Avatar

Level 6

I do not see an option to do that in LC.....however if your intent is to display enlarged image here is what you can do.....

load all your thumbnail images and have blank Image field next to them using mouseEnter and mouseExit events display the image that gets focus....like...

//mouseEnter

this.parent.ImageField2.dataNode.value

= this.parent.ImageField1.dataNode.value;

//mouseExit

this.parent.ImageField2.dataNode.value

= "";

Note: Do not forget to set "Scale Image Proportionally"

Good Luck;