Hi,
I have several controls in my app that uses grid. Grid is being used on all of them in the same way:
however on some of those grids filtering and sorting is working properly, on some grids it is working only on bool columns and on some it is not working at all (I cannot see the 'tube' symbol for filtering and I cannot sort the column by clicking its header).
What may be wrong?
I have several controls in my app that uses grid. Grid is being used on all of them in the same way:
<
telerik:RadGridView
x:Name
=
"RadGridView1"
ItemsSource
=
"{Binding Items}"
Margin
=
"0"
RowIndicatorVisibility
=
"Collapsed"
IsReadOnly
=
"True"
AutoGenerateColumns
=
"False"
CanUserFreezeColumns
=
"False"
CanUserResizeColumns
=
"True"
MouseDoubleClick
=
"RadGridView1_MouseDoubleClick"
IsFilteringAllowed
=
"True"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
Header
=
"Name"
DataMemberBinding
=
"{Binding BusinessItem.Name}"
Width
=
"*"
/>
...
however on some of those grids filtering and sorting is working properly, on some grids it is working only on bool columns and on some it is not working at all (I cannot see the 'tube' symbol for filtering and I cannot sort the column by clicking its header).
What may be wrong?