How to achieve multiple create items in USelectMenu/UInputMenu? #6615
Unanswered
KazimirPodolski
asked this question in
Q&A
Replies: 1 comment
|
There isn't a per-item If you need several create actions, the cleanest current workaround is to set Your proposed per-item flag would be a new feature rather than something currently exposed by |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Package
v4.x
Description
I'm using a USelectMenu to select over multiple entities. I would like to have a separate create item for each. However, currently only 1 create item seems to be supported directly.
If I naively just include my own create items (of
type: 'item') with appropriateonSelect, then they get filtered out by the search.Workarounds:
Proposal: if currently there is no clean way, then add new property
alwaysto an item oftype: 'item'which excludes the item from filtering. The property also easily covers all cases ofcreate-item, so the latter can even be deprecated if desired.All reactions