SNAPSHOT_v8.3d_2012-04-04/PowerEdition
IE8, chrome 18
you can try on a sample like SmartClient_Explorer.html#listComboBox
modified like this:
then executing, in the developer console:
mySampleForm.getItem('itemName').fetchData()
fetches data, but dataArrived isn't called.
IE8, chrome 18
you can try on a sample like SmartClient_Explorer.html#listComboBox
modified like this:
Code:
isc.DynamicForm.create({
ID:"mySampleForm",
width: 500,
numCols: 4,
fields : [{
name: "bugStatus", title: "Bug Status",
editorType: "comboBox",
valueMap : {
"new" : "New",
"active" : "Active",
"revisit" : "Revisit",
"fixed" : "Fixed",
"delivered" : "Delivered",
"resolved" : "Resolved",
"reopened" : "Reopened"
}
},{
name: "itemName", title: "Item Name", editorType: "SelectItem",
optionDataSource: "supplyItem", pickListWidth: 250,
dataArrived:function(startRow, endRow, data) {
isc.logEcho(data, 'data arrived itemName')
}
}]
});
mySampleForm.getItem('itemName').fetchData()
fetches data, but dataArrived isn't called.
Comment