SmartClient Version: v10.1p_2016-03-29/Enterprise Development Only (built 2016-03-29)
and
SmartClient Version: SNAPSHOT_v11.0d_2016-03-27/EVAL Development Only (expires 2016.05.26_09.22.33) Licensed to: Isomorphic Software (#ISC_EVAL_NIGHTLY)
Chrome on OSX
Please modify the #formDependentSelectsDatabound sample like this:
Basically there are two selectItems dataBound to the same dataSource. That seems to be the key to reproduce the problem.
You'll see that the first SelectItem remains not editable and displays the 'Loading' message.
and
SmartClient Version: SNAPSHOT_v11.0d_2016-03-27/EVAL Development Only (expires 2016.05.26_09.22.33) Licensed to: Isomorphic Software (#ISC_EVAL_NIGHTLY)
Chrome on OSX
Please modify the #formDependentSelectsDatabound sample like this:
Code:
isc.DynamicForm.create({ top: 25, width: 500, numCols: 4, autoDraw: true, fields: [ { name: "itemName1", title: "Item", optionDataSource: "supplyItem", displayField: "itemName", valueField: "itemID", defaultValue: 1, editorType: "SelectItem", visible: true, required: true }, { name: "itemName2", title: "Item", optionDataSource: "supplyItem", displayField: "itemName", valueField: "itemID", defaultValue: 2, editorType: "SelectItem", visible: true, required: true } ] });
You'll see that the first SelectItem remains not editable and displays the 'Loading' message.
Comment