I noticed that the Img component reloads the image on mouseOver.
I tried setting all possible properties that could prevent this reload:
But nothing worked.
The only thing that helped was overriding the event like this:
The reload is especially noticeable when the browser’s debug window is open.
You can track this bug in your example here: https://smartclient.com/smartclient-...owcase/?id=img
Version v13.1p_2025-09-24/Pro Deployment (2025-09-24)
I tried setting all possible properties that could prevent this reload:
Code:
showFocusedAsOver: false, showImageFocusedAsOver: false, showImageRollOver: false, showRollOver: false, showOverCanvas: false, showRollOverIcon: false, canHover: false, showHover: false,
The only thing that helped was overriding the event like this:
Code:
mouseOver: function () { return false; }
You can track this bug in your example here: https://smartclient.com/smartclient-...owcase/?id=img
Version v13.1p_2025-09-24/Pro Deployment (2025-09-24)
Comment