Good morning once again.
Today I am trying to apply an image to the RadImageButton, however only the Text is showing, never the image. Not sure what the issue is.
Note: there is no code behind for this button yet, its just static for testing purposes.
<telerik:RadImageButton ID="RadImageButton1" runat="server" Text="Cat II/III" Width="50px" Height="50px">
<Image Url="Content/Images/Cat3.png" />
</telerik:RadImageButton>
the problem is that i declared the function of onitemdatabound but theres an error that says it cant find the cell bound
for example i have a telerik: gridtemplatecolumn with unique name action and meta resourcekey gtcaction
then i have an item template where i have an imagebutton with present the id
Hi. I am trying to convert an asp ImageButton to a RadImageButton because there are some useful features that would make my life a bit easier. However, the binding for the image URL won't work - at least the way I am doing it.
So this works (both are in the same ListView):
<
asp:ImageButton
ID
=
"im"
runat
=
"server"
ImageUrl='<%# Eval("ImgUrl") %>' />
But this:
<
telerik:RadImageButton
runat
=
"server"
ID
=
"itemImageButton"
' >
<
Image
Url='<%# Eval("ImgUrl") %>' />
</
telerik:RadImageButton
>
gives me an error something like Telerik.Web.UI.ButtonBase.ButtonImage does not have a DataBinding event.
Is it possible to do this with the RadImageButton?