Hello, I've just noticed that the selectItemLiteTextPendingErrorFocused style is missing, at least in flat skins:
run foo.validate() and then select an option
Code:
isc.DynamicForm.create({ ID:"foo", width: 500, numCols: 4, isGroup: true,showPending:true, groupTitle: "List - ComboBox", wrapItemTitles: false, fields : [{ name: "bugStatus", title: "Bug Status", editorType: "ComboBoxItem",required:true, valueMap : { "new" : "New", "active" : "Active", "revisit" : "Revisit", "fixed" : "Fixed", "delivered" : "Delivered", "resolved" : "Resolved", "reopened" : "Reopened" } },{ name: "itemName", title: "Item Name", editorType: "ComboBoxItem", optionDataSource: "supplyItem", pickListWidth: 250 }] });
Comment