With regards to isc.StatefulCanvas, is it possible to not append the suffix on the image name such as '_Over' but keep the class name appended with the suffix?
This can be illustrated on the following code snippet using SmartClient Version: v9.1p_2015-08-21/Pro Deployment (built 2015-08-21) on Chrome 44.0:
Current behavior on roll over:
Desired behavior on roll over:
The following have already been attempted but to no avail:
-using 'showRollOver: false' will remove the suffix for both class and image
-using 'showRollOverIcon: false' seems to only apply to icons
----------------
SmartClient Version: v9.1p_2015-08-21/Pro Deployment (built 2015-08-21)
Windows 7 Chrome 44.0.2403.157
This can be illustrated on the following code snippet using SmartClient Version: v9.1p_2015-08-21/Pro Deployment (built 2015-08-21) on Chrome 44.0:
Code:
isc.ImgButton.create({ src: "http://www.google.com/favicon.ico" });
Code:
<div class=”imgButtonOver”><img src=[URL]http://www.google.com/favicon_Over.ico[/URL]></img></div>
Code:
<div class=”imgButtonOver”><img src=[URL]http://www.google.com/favicon.ico[/URL]></img></div>
-using 'showRollOver: false' will remove the suffix for both class and image
-using 'showRollOverIcon: false' seems to only apply to icons
----------------
SmartClient Version: v9.1p_2015-08-21/Pro Deployment (built 2015-08-21)
Windows 7 Chrome 44.0.2403.157
Comment