SmartClient Version: v12.1p_2022-10-18/AllModules Development Only (built 2022-10-18)
Chrome on MacOS
Hello, please try the formDependentSelectsDatabound showcase sample modified like this:
you'll see in the RPC tab that in the first fetch there's the sortField, but when you scroll down the pickList, the sortField is omitted in the subsequent fetches.
Same using initialSort.
Chrome on MacOS
Hello, please try the formDependentSelectsDatabound showcase sample modified like this:
Code:
isc.DynamicForm.create({ top: 25, width: 500, numCols: 4, autoDraw: true, fields: [ {name:"categoryName", title:"Category", editorType:"SelectItem", pickListProperties:{sortField:"categoryName", sortDirection:"descending"}, optionDataSource:"supplyCategory", changed:"form.clearValue('itemName');" } ] });
Same using initialSort.
Comment