SmartClient Version: v13.1p_2025-09-25/AllModules Development Only (built 2025-09-25)
Chrome, FF on MacOS
Hi, I noticed that FormItemIcon.showOver doesn’t seem to have any effect. I also tried with the different options of showOverWhen, and with the icon inline or not.
When I hover, the icon doesn’t change (in this case class="icon" remains unchanged):
Chrome, FF on MacOS
Hi, I noticed that FormItemIcon.showOver doesn’t seem to have any effect. I also tried with the different options of showOverWhen, and with the icon inline or not.
When I hover, the icon doesn’t change (in this case class="icon" remains unchanged):
Code:
var form = isc.DynamicForm.create({ autoDraw: false, items: [{ name: "search", title: "Search Term", width: 200, showOverIcons: true, icons: [{ name: "clear", src: "Cancel", showOver: true, inline: true, prompt: "Clear this field", showOverWhen: "icon", click: function (form, item, icon) { item.clearValue(); item.focusInItem(); } }] }] }); isc.VStack.create({ width: "100%", members: [form] });
Comment