Closed
Description
Hi I have a problem about "allowDuplicateValues"
isDup function checks item's textProperty instead of valueProperty, so i can't select both Michaels from a dataset like this:
[
{ 'id': 1, 'name': "Michael" },
{ 'id': 2, 'name': "Michael" },
{ 'id': 3, 'name': "James" },
...
]
my options:
'multiple': true,
'textProperty': "{name}",
'visibleProperties': ["name"],
'searchIn': ["name"],
'valueProperty': "id",
'searchContain': true,
'searchByWord': true,
'minLength': 0,
'removeOnBackspace': false,
'selectionRequired': true