SmartClient Version: v13.0p_2022-11-17/AllModules Development Only (built 2022-11-17)
SmartClient Version: v12.1p_2022-11-17/AllModules Development Only (built 2022-11-17)
Chrome on MacOS
Hello, please try this test case:
then call dsListGrid.refreshData(), you'll see a fetch without the implicitCriteria
SmartClient Version: v12.1p_2022-11-17/AllModules Development Only (built 2022-11-17)
Chrome on MacOS
Hello, please try this test case:
Code:
var implicitCriteria = { _constructor: "AdvancedCriteria", operator: "and", criteria: [ { fieldName: "units", operator: "equals", value: "Roll" } ] }; isc.ListGrid.create({ ID: "dsListGrid", width: "100%", height: "100%", autoFetchData: true, dataSource: "supplyItem", implicitCriteria: implicitCriteria });
Comment