SmartClient Version: v13.1p_2025-07-29/AllModules Development Only (built 2025-07-29)
Chrome, FF on MacOS
Hi, I think I’ve found a reproducible issue with this test case:
Basically, the SVG "Edit" icon doesn't apply the style until I hover over the icon itself.
From the Chrome console, I can see that initially it has cssclass="myIcon", but class="icon".
After hovering, it finally changes to class="myIcon" as expected.
Chrome, FF on MacOS
Hi, I think I’ve found a reproducible issue with this test case:
Code:
isc.StyleSheetHandler.create({ autoLoad: true, cssText: ".myIcon {color: red;} .myIconOver {color: green;} " }); var form = isc.DynamicForm.create({ autoDraw: false, items: [{ name: "search", title: "Search Term", width: 200, icons: [ { name: "edit", src: "Edit:cssClass:myIcon;", showOver: true, showFocused: false, prompt: 'edit' } ] }] }); isc.VStack.create({ width: "100%", members: [form] });
From the Chrome console, I can see that initially it has cssclass="myIcon", but class="icon".
After hovering, it finally changes to class="myIcon" as expected.
Comment