Hi,
I've a radGridView which displays some "order". Each order has a status(represented by an enum.
I want to not display by default order with a Closed status.
So, I added this on my radgridview:
This is actually working, but I've a problem, this filter isn't displayed in any filter list.
Even if I've a column with the exact same DataMember:
How can I manage this??? Xaml side of course
I saw this: http://www.telerik.com/help/silverlight/radgridview-filtering-column-filter-descriptors.html
But I can't specify a GridViewDataColumn in the xaml of the FilterDescriptor
I've a radGridView which displays some "order". Each order has a status(represented by an enum.
I want to not display by default order with a Closed status.
So, I added this on my radgridview:
<
telerik:RadGridView.FilterDescriptors
>
<
telerik:FilterDescriptor
Member
=
"LastStatus.Status"
Value
=
"Closed"
Operator
=
"IsNotEqualTo"
/>
</
telerik:RadGridView.FilterDescriptors
>
This is actually working, but I've a problem, this filter isn't displayed in any filter list.
Even if I've a column with the exact same DataMember:
<
telerik:GridViewDataColumn
Header
=
"Current Status"
DataMemberBinding
=
"{Binding LastStatus.Status}"
/>
How can I manage this??? Xaml side of course
I saw this: http://www.telerik.com/help/silverlight/radgridview-filtering-column-filter-descriptors.html
But I can't specify a GridViewDataColumn in the xaml of the FilterDescriptor