Hi there,
Using icons in a SelectItem does show the icons in the selectbox, but the icons seem to be not properly aligned with the text.
The Flag icon should have the same space from bottom and the top. By now it looks like glued to the bottom of the box.
Version: SmartClient_v111p_2017-07-23_Pro
Browser: All Browsers
Skin: Tahoe, Enterprise
Density: Medium, Dense
Tahoe on Medium:
Tahoe on Dense:
(I know this will be a won't fix with Dense with skin Tahoe, but posting for comparison)
Enterprise on Medium
Enterprise on Dense:
Code for reproduction
Best regards
Using icons in a SelectItem does show the icons in the selectbox, but the icons seem to be not properly aligned with the text.
The Flag icon should have the same space from bottom and the top. By now it looks like glued to the bottom of the box.
Version: SmartClient_v111p_2017-07-23_Pro
Browser: All Browsers
Skin: Tahoe, Enterprise
Density: Medium, Dense
Tahoe on Medium:
Tahoe on Dense:
(I know this will be a won't fix with Dense with skin Tahoe, but posting for comparison)
Enterprise on Medium
Enterprise on Dense:
Code for reproduction
Code:
isc.DynamicForm.create({ "ID": "theForm", "fields": [{ "ID": "stateSelectItem", "name": "stateSelectItem", "title": "State", "type": "text", "editorType": "comboBox", "width": "*", "iconWidth": 16, "iconHeight": 16, "imageURLPrefix": "https://cdn3.iconfinder.com/data/icons/142-mini-country-flags-16x16px/16/", "imageURLSuffix": ".png", "valueIconSize": 16, "valueIcons": { 1: "flag-belgium", 2: "flag-south-korea", 3: "flag-germany" }, "textMatchStyle": "substring", "allowEmptyValue": true, "valueMap": { 1: "Belgium", 2: "SouthKorea", 3: "Germany" } } ], "values": { "stateSelectItem": 3 } })
Comment