Hi Isomorphic,
please see this modified 6.1p sample (v11.1p_2017-11-21):
On load, the generated html looks like this:
After hovering the code changes to the expected staticTextItem:
This one and the other readOnlyDisplay: "static", canEdit: false issue I reported are not urgent for me now, as the code is not going to production in the next weeks, but it would be great if it got fixed eventually.
Thank you & Best regards
Blama
please see this modified 6.1p sample (v11.1p_2017-11-21):
Code:
isc.DynamicForm.create({ ID: "form2", readOnlyDisplay: "static", canEdit: false, width: 620, colWidths: [190, "*"], isGroup: true, groupTitle: "Select / Combo Controls", fields : [ { name: "comboBoxItem", title: "Item Name", editorType: "ComboBoxItem", optionDataSource: "supplyItem", wrapTitle: false, displayField:"itemName", valueField:"SKU", hint: "foobar" }, { name: "selectItem", title: "Select", editorType: "SelectItem", optionDataSource: "supplyItem", wrapTitle: false, displayField:"itemName", valueField:"SKU", hint: "foobar" }], values: {comboBoxItem: "Spray Adhesive Multipurpose Can No.76 3M", selectItem: "Spray Adhesive Multipurpose Can No.76 3M"} });
After hovering the code changes to the expected staticTextItem:
This one and the other readOnlyDisplay: "static", canEdit: false issue I reported are not urgent for me now, as the code is not going to production in the next weeks, but it would be great if it got fixed eventually.
Thank you & Best regards
Blama
Comment