This question is locked. New answers and comments are not allowed.
Hey support,
I appreciate your quick reply for my previous posts, Here i stuck with some basic issue again. I am displaying a long string in my grid, naturally my client want that to be wrapped.
I set following properties
| IsFilteringAllowed="True" |
| <telerikGridView:GridViewDataColumn Header="Customer Name" Width="200" IsFilterable="True" DataMemberBinding="{Binding }" > |
| <telerikGridView:GridViewDataColumn.CellTemplate> |
| <DataTemplate > |
| <TextBlock Text="{Binding CustomerName}" |
| TextWrapping="Wrap" |
| TextAlignment="Left"> |
| </TextBlock> |
| </DataTemplate> |
| </telerikGridView:GridViewDataColumn.CellTemplate> |
| </telerikGridView:GridViewDataColumn> |
Now I am unable to apply filtering for this column, even filter Symbol is not showing up.
Any help?