I would like to have a simple way to add a watermark to images being displayed in the Image Gallery without altering the original image.
https://www.screencast.com/t/uEns65TeVAW
<telerik:RadImageGallery ID="RadImageGallery1" runat="server"> <ThumbnailsAreaSettings ThumbnailWidth="140px" Width="140px" Position="Left" ScrollOrientation="Vertical" /> <Items> <telerik:ImageGalleryItem ImageUrl="Images/Yoga.jpg" Title="Title 1" /> <telerik:ImageGalleryItem ImageUrl="Images/Swimming.jpg" Title="Title 2" />
<%-- Title container disappears here and will not show up with the rest of the items --%>
<telerik:ImageGalleryItem ImageUrl="Images/Surfing.jpg" />
<telerik:ImageGalleryItem ImageUrl="Images/Snowboarding.jpg" Title="Title 4" /> <telerik:ImageGalleryItem ImageUrl="Images/Skiing.jpg" Title="Title 5" /> </Items></telerik:RadImageGallery>Hi,
I have an image gallery control that gets the image items added to it at runtime. After the page is done loading, the default main image is blank. How do I programmatically set the main image to the first image?
I've attached a screenshot of the function that adds the image items as well as the finished rendered page result.
Thanks