Ext.form.ux.touch.MultiSelect
Ext.form.ux.touch.MultiSelect copied to clipboard
Integer id field
When id field in model is int type, findIndex method doesn't find record in store.
It's because of line 218: if (rec.get(valueField) === value) {
value is coming in as String. Change that to == instead of === and it'll work