Hello,
I'm defining custom filters that inherits from existing filters. In Silverlight, I have no problem with this, but in WPF, the custom filters doesn't show all the options the first time it is displayed.
For example, if I define my custom filter as:
Actually, this filter does nothing, it just inherits from the Telerik one.
Now, when I click on the funnel, the first time, the filter only displays the combo boxes, as you can see in the enclosed screen shot.
The second time the filter is displayed, it contains all the items.
Patrick
I'm defining custom filters that inherits from existing filters. In Silverlight, I have no problem with this, but in WPF, the custom filters doesn't show all the options the first time it is displayed.
For example, if I define my custom filter as:
Namespace OrdinaSoft.Windows.Controls;Interface Uses System.Windows, Telerik.Windows.Controls, Telerik.Windows.Controls.GridView, Telerik.Windows.Data; Type FilteringControl Nested In osRadGridViewTextColumn = Private Sealed Class ( Telerik.Windows.Controls.GridView.FilteringControl ) Public Constructor; Method Prepare (Column : GridViewColumn); Override; End;Implementation Constructor osRadGridViewTextColumn.FilteringControl; Begin Style := System.Windows.Style (Application.Current.Resources ['FilteringControlStyle']) End; Method osRadGridViewTextColumn.FilteringControl.Prepare ( Column : GridViewColumn ); Begin Inherited Prepare (Column); End;End.Actually, this filter does nothing, it just inherits from the Telerik one.
Now, when I click on the funnel, the first time, the filter only displays the combo boxes, as you can see in the enclosed screen shot.
The second time the filter is displayed, it contains all the items.
Patrick