Multi-Select with values that have commas #2197
-
Hello, is it possible to add a value to the multi select that contains commas? For example: I have values that need to be split (like"Test1" and "Test3") but I also have values, that kind of fit together that I want to seperate with a comma inside the multi select. Is this possible or planned in the future? Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Technically it is possible, but I'm not sure if it is worth complicating the UI. A select option is usually intended to represent 1 state/value and manually combining multiple values into 1 option kind of defeat the purpose of a multi- So for now my recommendation would be to not manually combine values OR if you really need it - use a different delimiter like |
Beta Was this translation helpful? Give feedback.
Technically it is possible, but I'm not sure if it is worth complicating the UI.
A select option is usually intended to represent 1 state/value and manually combining multiple values into 1 option kind of defeat the purpose of a multi-
select
in the first place. Doing so will complicate the filter conditions (you'll have to rely on the~
operator) and you may also end up with partial duplicated selection, eg.["test1", "test1,test2"]
.So for now my recommendation would be to not manually combine values OR if you really need it - use a different delimiter like
-
,|
,/
,;
, etc.