I'm working on a project where I'm using the ImageGallery to display some photos which can then be zoomed in on using a jQuery plugin. Typically this involves in having the medium sized image (the one displayed in the ImageGallery) linked to the larger version, and a custom class needs to be assigned to the medium image. Is this possible to do?
I've attempted something like this:
but that does not work, as the "Attributes" property is not recognized. Any suggestions?
Alternatively, has anyone attempted to add zoom capabilities to the ImageGallery, and if so, which component did you use (jQuery plugin or otherwise) and how did you integrate the two components together?
Thank you,
Alex
I've attempted something like this:
foreach
(ImageGalleryItemBase oItem
in
rdPics.Items)
{
oItem.Attributes.add(
"class"
,
"MagicZoomPlus"
);
}
but that does not work, as the "Attributes" property is not recognized. Any suggestions?
Alternatively, has anyone attempted to add zoom capabilities to the ImageGallery, and if so, which component did you use (jQuery plugin or otherwise) and how did you integrate the two components together?
Thank you,
Alex