Hello,
I have a grid defined like this:
Running the application, I set a filter to some date on the column here named "Six".
When I then clicked the filter button again, I was unable to clear the filter.
I suspect it has to do with me setting IsReadonly to true.
Is this a bug?
-- Regards, Morten
I have a grid defined like this:
<telerik:RadGridView x:Name="resultsList" Grid.Row="1" Margin="4" ItemsSource="{Binding Results}" telerik:Theming.Theme="Windows7" ShowGroupPanel="False" AutoGenerateColumns="False" MouseDoubleClick="resultsList_MouseDoubleClick" ScrollMode="RealTime" CanUserInsertRows="False" CanUserDeleteRows="False" EditTriggers="None" IsReadOnly="True"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn Header="One" DataMemberBinding="{Binding Model.Article}" Width="100" /> <telerik:GridViewDataColumn Header="Two" DataMemberBinding="{Binding Model.Batch}" Width="50" /> <telerik:GridViewDataColumn Header="Three" DataMemberBinding="{Binding Model.Serial}" Width="120" ShowDistinctFilters="False" /> <telerik:GridViewDataColumn Header="Four" DataMemberBinding="{Binding UnitDetails.LastOperation.Name}" Width="120" /> <telerik:GridViewDataColumn Header="Five" DataMemberBinding="{Binding UnitDetails.Opened}" Width="150" ShowDistinctFilters="False" /> <telerik:GridViewDataColumn Header="Six" DataMemberBinding="{Binding UnitDetails.Completed}" Width="150" ShowDistinctFilters="False" /> <telerik:GridViewDataColumn Header="Seven" DataMemberBinding="{Binding UnitDetails.CurrentStatus}" Width="100" /> </telerik:RadGridView.Columns></telerik:RadGridView>Running the application, I set a filter to some date on the column here named "Six".
When I then clicked the filter button again, I was unable to clear the filter.
I suspect it has to do with me setting IsReadonly to true.
Is this a bug?
-- Regards, Morten