This question is locked. New answers and comments are not allowed.
Hi
I have 2 question for image column of a grid.
1 In below code snippet if I use GridViewColumn then image is shown in my grid.But if I use GridViewImageColumn then image is not shown in my grid.Why is this behaviour??
2 I want to set the source of image shown in below column dynamically/conditionally? How can I acheive this?
I have commented GridViewImageColumn as it is not working ...............
I have 2 question for image column of a grid.
1 In below code snippet if I use GridViewColumn then image is shown in my grid.But if I use GridViewImageColumn then image is not shown in my grid.Why is this behaviour??
2 I want to set the source of image shown in below column dynamically/conditionally? How can I acheive this?
I have commented GridViewImageColumn as it is not working ...............
<telerik1:RadGridView.Column>
<telerik1:GridViewColumn UniqueName="AssetImage">
<telerik1:GridViewColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal"> <Image Stretch="None" Source="Images/HFundHFR.png" Margin="0,0,5,0" /> </StackPanel> </DataTemplate> </telerik1:GridViewColumn.CellTemplate> </telerik1:GridViewColumn> <!--<telerik1:GridViewImageColumn UniqueName="AssetImage"> <telerik1:GridViewImageColumn.CellTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <Image Stretch="None" Source="Images/HFundHFR.png" Margin="0,0,5,0" /> </StackPanel> </DataTemplate> </telerik1:GridViewImageColumn.CellTemplate>