Using version: v110p_2016-08-22_LGPL
Problem
When you use a custom (subclass) of SelectItem in the listgrideditor, and press the down arrow key, it leaves the focus of the editor row and continues to the next row.
Suggested solution
Change the custom implementation of isc.isA.SelectItem to allow subclasses as well.
ISC_Core.js@3856
Change
To:
Problem
When you use a custom (subclass) of SelectItem in the listgrideditor, and press the down arrow key, it leaves the focus of the editor row and continues to the next row.
Suggested solution
Change the custom implementation of isc.isA.SelectItem to allow subclasses as well.
ISC_Core.js@3856
Change
Code:
SelectItem : function (item) { if (!item || !isc.isA.FormItem(item)) return false; var itemClass = item.getClass(); return (itemClass == isc.SelectItem || itemClass == isc.NativeSelectItem); },
Code:
SelectItem : function (item) { if (!item || !isc.isA.FormItem(item)) return false; var itemClass = item.getClass(); return (item.isA(isc.SelectItem) || itemClass == isc.NativeSelectItem); },
Comment