You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In antd one, when we have select with the following option, then want to past a data like 1,2,3 it doesn't add the whole 3 tags there. It just add the last one.
label: selectop,
type: 'select',
fieldSettings: {
showSearch: true,
allowCustomValues: true,
customProps: {
mode:"tags",
tokenSeparators: [","]
},
},
defaultOperator: 'select_any_in',
operators: ['select_any_in', 'select_not_any_in'],
I
To Reproduce
To reproduce the bug enable the allowCustomValues so it's going to set the mode to "tags" then in the custom props set tokenSeparators: [","]
then copy 1,2,3 and past it in the dropdown.
Expected behavior
when we past the 1,2,3 it should add three tag separately with the value of 1 2 3 and in the SQL for where it should be like xxx in ('1','2',3')
Describe the bug
In antd one, when we have select with the following option, then want to past a data like 1,2,3 it doesn't add the whole 3 tags there. It just add the last one.
label:
selectop
,type: 'select',
fieldSettings: {
showSearch: true,
allowCustomValues: true,
customProps: {
mode:"tags",
tokenSeparators: [","]
},
},
defaultOperator: 'select_any_in',
operators: ['select_any_in', 'select_not_any_in'],
I
To Reproduce
To reproduce the bug enable the allowCustomValues so it's going to set the mode to "tags" then in the custom props set tokenSeparators: [","]
then copy 1,2,3 and past it in the dropdown.
Expected behavior
when we past the 1,2,3 it should add three tag separately with the value of 1 2 3 and in the SQL for where it should be like xxx in ('1','2',3')
Screenshots
Additional context
Check out Automatic tokenization of antd select feature
The text was updated successfully, but these errors were encountered: