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
Support for NavigateUrl as implemented in other controls like RadLightBox. The idea is to redirect to a specific URL when clicking on an image.
The get_width()/get_height() methods of RadImageGalleryItem always return null:
Sample code:
$find('<%=RadImageGallery1.ClientID%>').get_items().getItem(0).get_width()
With regards to the RadImageGallery control, I suggest allowing developers to make the ImageGalleryItems "Title" and/or "Description" linkable. The RadImageGallery is a resource that lends itself to easily "promote" or "inform" users about events, products, and/or services and by making each slide linkable to a supporting page would be extremely useful.
I like to add my own buttons in the toolbar, for example to open new Windows, add more text to the description, specify if I like or dislike the picture.
When databinding to the RadImageGallery can we have access to the OnItemDataBond event like we do with other databound controls. http://www.telerik.com/forums/fire-a-pop-up-from-displayed-image#w7LtyC-2KUC07Y1GcJZ1Lg
Currently, only the ALT tag is created in Image Gallery. It would be nice if the TITLE tag is also created. http://www.telerik.com/forums/title-tag-in-html
Hi,
i would love to have a n option to set the Gallerry to keep the title and text visible when the Gallery is in play mode, until the user pause the gallery or move the mouse out.
a work around was provided to me by Attila, which works fine, but i think it should be a built in property.
Thanks a lot,
ilan.
Add ability to define common layout template for the ImageGallery LightBox popup, allowing to define common layout for all image items (including buttons, toolbar, etc.)
<
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
>
Slideshow rendering messed up in Chrome. After any slide comes in a segment the right side is corrupted as shown in the attached image. The bug is reproduced if you set the animation to loop and fire the play button. After that leave the slider to work non-stop for 10-15 minutes and you'll see the corrupted rendering. Here is some test code: <telerik:RadImageGallery ID="RadImageGallery1" Width="100%" LoopItems="true" ImagesFolderPath="slides" runat="server" DisplayAreaMode="Image" Height="450px"> <ClientSettings> <AnimationSettings SlideshowSlideDuration="6000"> <NextImagesAnimation Type="Random" Easing="Random" Speed="3000" /> <PrevImagesAnimation Type="Random" Easing="Random" Speed="3000" /> </AnimationSettings> </ClientSettings> <ThumbnailsAreaSettings Position="Left" Width="0" Mode="ImageSlider" ScrollOrientation="Vertical" /> <ImageAreaSettings ShowDescriptionBox="false" NavigationMode="Zone" Height="100%" /> </telerik:RadImageGallery>
how can i change the background color of the imagegallery-thumbnailsarea ? i have allready analysed the style under google.developers and found the style in rigThumbnailslst, but if i change the value in skins/imagegallery.css nothing is taken and nothing happens.
https://www.screencast.com/t/uEns65TeVAW
Can a Target Property be added to ImageGalleryItem? Since the recent addition of NavigateURL property, it seems logical to have the Target Property available rather than using script. The new NavigateURL property is not used whenever you need to specify a target as script must do the job.