We have a Databound Combobox backed by a Datasource that supports paging. When the user opens the List or enters something the Combox is not only fetching the first page but it is going to load all pages. This is very bad because we could have thousends of items. The Datasource works fine with listgrids and paging as excpected.
The small example below is uses only the SmartClient skin and runs with the current Version (SmartClient_v110p_2016-11-03_Pro).
Attached are the two first Requests/Responses and some Debug-Log from developper console
The small example below is uses only the SmartClient skin and runs with the current Version (SmartClient_v110p_2016-11-03_Pro).
Code:
var stack = isc.VStack.create( { members : [ isc.DynamicForm.create( { width : 400, numCols : 2, fields : [ { name : "product", width : "*", titleAlign : "left", required : true, editorType : isc.ComboBoxItem, optionDataSource : isc.DataSource.create( { ID : "ProductPicker$Pos", fields : [ { name : "name", type : "text" }, { name : "identity", type : "text" } ] }), displayField : "name", valueField : "identity", type : "text", title : "Product" } ] }) ] });
Comment