Hi Isomorphic,
explaining progressiveLoading and dataFetchMode I noticed that there is something not working as expected.
In my application (latest 6.1p) a SelectItem with progressiveLoading does skip the COUNT(*)-statement (which is good), but requests all rows of the DS, which is not expected.
I tried to reproduce in the SmartClient showcase and there is also an issue, but a different one. Please see this modified sample (v11.1p_2018-02-21) and the requests issues on pickList open:
This is minor for me.
Best regards
Blama
explaining progressiveLoading and dataFetchMode I noticed that there is something not working as expected.
In my application (latest 6.1p) a SelectItem with progressiveLoading does skip the COUNT(*)-statement (which is good), but requests all rows of the DS, which is not expected.
I tried to reproduce in the SmartClient showcase and there is also an issue, but a different one. Please see this modified sample (v11.1p_2018-02-21) and the requests issues on pickList open:
Code:
isc.DynamicForm.create({ width: 500, numCols: 4, isGroup: true, groupTitle: "List - ComboBox", wrapItemTitles: false, fields : [{ name: "bugStatus", title: "Bug Status", editorType: "ComboBoxItem", valueMap : { "new" : "New", "active" : "Active", "revisit" : "Revisit", "fixed" : "Fixed", "delivered" : "Delivered", "resolved" : "Resolved", "reopened" : "Reopened" } },{ name: "itemName", title: "Item Name", editorType: "ComboBoxItem", optionDataSource: "supplyItem", pickListWidth: 250, [B]pickListProperties: {progressiveLoading: true}[/B] }] });
This is minor for me.
Best regards
Blama
Comment