SmartClient Version: SNAPSHOT_v13.0d_2021-07-24/AllModules Development Only (built 2021-07-24)
Chrome on MacOS
Hello, please try this test case:
If you click to open the pickList, you'll see that the first item has a light background until you over on it:
Chrome on MacOS
Hello, please try this test case:
Code:
isc.DynamicForm.create({ width: 500, numCols: 4, isGroup: true, groupTitle: "List - ComboBox", wrapItemTitles: false, fields : [{ name: "bugStatus", title: "Bug Status", editorType: "SelectItem", valueMap : { "new" : "New", "active" : "Active", "revisit" : "Revisit", "fixed" : "Fixed", "delivered" : "Delivered", "resolved" : "Resolved", "reopened" : "Reopened" } }] });
Comment