SmartClient Version: v13.1p_2025-10-18/AllModules Development Only (built 2025-10-18)
Hi, while trying to use an SVG for checkedImage / uncheckedImage in a CheckBoxItem, I noticed that when the component loses focus (on blur), a request is made for an image using the SVG ID as its name - which obviously doesn’t exist.
please try this test case:
You'll see requests like.
https://www-demos.smartclient.com/sm...pleImages/Edit
https://www-demos.smartclient.com/sm...eImages/Cancel
Also, I was wondering whether the icon should have its own style, like "icon", or not.
Hi, while trying to use an SVG for checkedImage / uncheckedImage in a CheckBoxItem, I noticed that when the component loses focus (on blur), a request is made for an image using the SVG ID as its name - which obviously doesn’t exist.
please try this test case:
Code:
isc.DynamicForm.create({
ID: "form1",
width: 620,
colWidths: [190, "*"],
fields: [
{name: "checkbox", title: "Checkbox", type: "checkbox", height: 25, checkedImage:"Edit", uncheckedImage:"Cancel", },
{name:"text", title:"text", type:"text"}
]
});
https://www-demos.smartclient.com/sm...pleImages/Edit
https://www-demos.smartclient.com/sm...eImages/Cancel
Also, I was wondering whether the icon should have its own style, like "icon", or not.
Comment