Hi,
I hit a bug when trying to use ComboBox with optionDataSource as an editor in my grid.
To reproduce go to http://localhost:8080/isomorphic/sys...rgeValueMapSQL and paste this code:
Now, the bug:
Version: v10.1p_2016-02-12/PowerEdition Development Only, happens also on showcase (currently build 2016-03-02).
I hit a bug when trying to use ComboBox with optionDataSource as an editor in my grid.
To reproduce go to http://localhost:8080/isomorphic/sys...rgeValueMapSQL and paste this code:
Code:
isc.ListGrid.create({ ID: "orderItemList", width:700, height:224, alternateRecordStyles:true, dataSource: largeValueMap_orderItem, fields:[ {name: "orderID"}, {name: "itemID", title: "Item Name", align: "left", width: "50%", displayField: "itemName", editorType: "ComboBoxItem", editorProperties: { optionDataSource: "supplyItem" } }, {name: "quantity"}, {name: "unitPrice"} ], autoFetchData: true, canEdit: true, showFilterEditor: true });
- Start editing any record by double-clicking it
- Click on picker icon to show pick list
- Scroll to the end of list (or ut least until CB requests another page of data)
- Exit editing by pressing ESC two times
- Repeat steps 1 and 2
- List is empty, and:
- it repaints when i try scrolling by using scrollbar
- it takes me to the bottom when i try to scroll by using mouse wheel
Version: v10.1p_2016-02-12/PowerEdition Development Only, happens also on showcase (currently build 2016-03-02).
Comment