SmartClient Version: v11.0p_2016-11-25/Enterprise Development Only (built 2016-11-25)
SmartClient Version: SNAPSHOT_v11.1d_2016-11-25/Enterprise Development Only (built 2016-11-25)
Chrome, Safari on OSX El Capitan
Hello, please try this test case:
you'll see that the select in the second form remains with the 'Loading...' message displayed.
SmartClient Version: SNAPSHOT_v11.1d_2016-11-25/Enterprise Development Only (built 2016-11-25)
Chrome, Safari on OSX El Capitan
Hello, please try this test case:
Code:
isc.defineClass("TestForm", "DynamicForm").addProperties({ top: 0, 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 } ] }); isc.TestForm.create({ top:0 }) isc.TestForm.create({ top:40 }) isc.TestForm.create({ top:80 })
Comment