Hi Isomorphic,
I'm relying on hidden column in selectItems in order to pass ID-data from the selected record.
It seems there was an regression here in the last days (IMHO it worked as before using v11.1p_2017-10-05, now I'm using v11.1p_2017-10-10).
See this modified testcase (v11.1p_2017-10-10):
The "SKU"-field is shown anyway and there is some issue with the filter for the "Item"-field:
The same (showing hidden fields) is happening in my application as well.
Best regards
Blama
I'm relying on hidden column in selectItems in order to pass ID-data from the selected record.
It seems there was an regression here in the last days (IMHO it worked as before using v11.1p_2017-10-05, now I'm using v11.1p_2017-10-10).
See this modified testcase (v11.1p_2017-10-10):
Code:
isc.DynamicForm.create({ ID:"testForm", width: 550, numCols:4, fields : [ { name: "filteredSelect", title: "Item (Select)", editorType: "SelectItem", optionDataSource: "supplyItem", wrapTitle: false, displayField:"itemName", valueField:"SKU", pickListWidth:300, pickListProperties: { showFilterEditor:true }, pickListFields:[ {name:"SKU", [B]hidden:true[/B]}, {name:"itemName"} ] } ] });
The same (showing hidden fields) is happening in my application as well.
Best regards
Blama
Comment