SmartClient Version: v11.0p_2016-05-06/EVAL Development Only (expires 2016.07.05_07.36.49) Licensed to: Isomorphic Software (#ISC_EVAL_NIGHTLY)
SmartClient Version: SNAPSHOT_v11.1d_2016-05-11/AllModules Development Only (built 2016-05-11)
Chrome on OSX
Hello, please modify the #formDependentSelectsFS sample like this:
You'll see that the 'anotherField' item becomes a selectItem with the same pickList as 'itemName'.
SmartClient Version: SNAPSHOT_v11.1d_2016-05-11/AllModules Development Only (built 2016-05-11)
Chrome on OSX
Hello, please modify the #formDependentSelectsFS sample like this:
Code:
isc.DynamicForm.create({ width: 500, fields : [ { name: "itemName", title: "Item Name", editorType: "ComboBoxItem", pickListWidth: 250, editorProperties: {optionDataSource: "supplyItem", valueField: "itemID", displayField: "itemName"} }, {name: "anotherField", type: "integer"} ] });
Comment