I copied a sample code from your demo:
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/webmail/defaultvb.aspx
<telerik:GridTemplateColumn UniqueName="TemplateColumn3" Groupable="False">
<HeaderStyle Width="20px"></HeaderStyle>
<ItemStyle Height="35px"></ItemStyle>
<ItemTemplate>
<asp:ImageButton ID="MailFlagImageButton" BorderWidth="0px" CommandName="ChangeFlag"
ImageUrl='<%# Convert.ToBoolean(DataBinder.Eval(Container.DataItem,
"Flagged"))? "img/MailFlagRed.gif" : "img/MailFlag.gif" %>'
AlternateText="Change Flag" Style="float: right; cursor: pointer;" runat="server">
</asp:ImageButton>
</ItemTemplate>
</telerik:GridTemplateColumn>
I this demo it shows that an image is being used to flag the item....
--------
In the beginning of the page I have a grid that have nothing in it. The user will select items above the grid then when i press purchase, the item selected will be displayed in the grid...
My problem is that when I display the items in the grid no image will display.. (note: the header of the ItemTemplate shows, but does not have any picture below it.)
the grid was rebinded.
The main problem is that the image does not display......
I tried using telerik:GridButtonColumn and made its type into image but the problem is still their no image is displayed
How can i solve this problem......