Ext.form.ux.touch.MultiSelect icon indicating copy to clipboard operation
Ext.form.ux.touch.MultiSelect copied to clipboard

Integer id field

Open 8alery opened this issue 13 years ago • 1 comments

When id field in model is int type, findIndex method doesn't find record in store.

8alery avatar Aug 19 '11 07:08 8alery

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

christocracy avatar Oct 07 '11 05:10 christocracy