Hi,
I am binding a datatable ( which has 3 columns & 3 rows) to a grid.
And after that now I am adding externally one more column called Image (contains image) to grid using ItemTemplate column as follows:
I am binding a datatable ( which has 3 columns & 3 rows) to a grid.
And after that now I am adding externally one more column called Image (contains image) to grid using ItemTemplate column as follows:
<
telerik:RadGrid ID="RadGrid1" runat="server" >
<MasterTableView
<Columns>
<telerik:GridTemplateColumn HeaderText="image" UniqueName="TemplateColumn">
<ItemTemplate>
<asp:ImageButton ID="Img" runat="server" ImageUrl="~/images/image1.gif" />
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
but I want to add 3 different images in 3 rows how could I do that ?
can any one help out solving the problem
Thanks,