hello,
i have a gridview with an image column like this.
i want to make it sortable based on TaskStateImage, how do i do so?
thank you very much!
i have a gridview with an image column like this.
<telerikGridView:GridViewDataColumn HeaderTextAlignment="Left" Header="Status" Width="55" IsResizable="False" IsGroupable="True" IsFilterable="False"> |
<telerikGridView:GridViewDataColumn.CellTemplate> |
<DataTemplate> |
<Grid> |
<Image Source="{Binding TaskStateImage}" HorizontalAlignment="Center" Width="16" Height="16"/> |
</Grid> |
</DataTemplate> |
</telerikGridView:GridViewDataColumn.CellTemplate> |
</telerikGridView:GridViewDataColumn> |
i want to make it sortable based on TaskStateImage, how do i do so?
thank you very much!