When i initialize a VirtualSelect with these options:
{
"name": "myVirtualSelect",
"showValueAsTags": false,
"selectAllOnlyVisible": true,
"setValueAsArray": true,
"enableSecureText": true,
"multiple": true,
"emptyValue": "[]",
"placeholder": "-None-",
"allOptionsSelectedText": "All",
"searchPlaceholderText": "Search…",
"options": [
{
"value": "<",
"label": "Value with unsafe char <"
},
{
"value": "something",
"label": "Something"
}
],
"selectedValue": [
"<"
],
"disabledOptions": []
}
and i select the Value with unsafe char <, the hidden input's value becomes ["<"] but that should be ["<"].
When i initialize a VirtualSelect with these
options:{ "name": "myVirtualSelect", "showValueAsTags": false, "selectAllOnlyVisible": true, "setValueAsArray": true, "enableSecureText": true, "multiple": true, "emptyValue": "[]", "placeholder": "-None-", "allOptionsSelectedText": "All", "searchPlaceholderText": "Search…", "options": [ { "value": "<", "label": "Value with unsafe char <" }, { "value": "something", "label": "Something" } ], "selectedValue": [ "<" ], "disabledOptions": [] }and i select the
Value with unsafe char <, the hidden input's value becomes["<"]but that should be["<"].