This question is locked. New answers and comments are not allowed.
I am using Silverlight 3.0 and I need to display icons\images for few columns (for edit & delete) in the radgridview.
I am using the code given below for the same but the icons are not getting displayed.
I am using the code given below for the same but the icons are not getting displayed.
<
telerikGridView:RadGridView Name="newDataGrid" MultipleSelect="True">
<telerikGridView:RadGridView.Columns>
<telerikGridView:GridViewColumn HeaderText="Picture">
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate x:Name="dtTemp">
<Image x:Name="img" Source="\ClientBin\Images\Edit.gif"/>
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
</telerikGridView:RadGridView.Columns>
</telerikGridView:RadGridView>
My Images folder is inside the ClentBin folder only.
Please help me to get this done.
Thanks in Advance,
Abhishek Chauhan