Hello Team,
We are using radDataFilter and Gridview filter on a xaml, here is a scnerio-
RadGridview has both the filters radDataFilter and GridView(Columns Filter).
The gridview is dependent on radDataFilter datasource called “FilteredSource”.
In the same context if we apply the filter on Gridview filter, the color of funnel icon must changed, but its not happening.
Code:
<telerik:RadDataFilter Name="radDataFilter"
DockPanel.Dock="Top"
Visibility="{Binding Path=IsVisible, Mode=OneWay}"
Source="{Binding Shipments}"
Margin="1">
</telerik:RadDataFilter>
<ydd:YodelGridView x:Name="ShipmentGrid"
SelectionMode="Extended"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding FilteredSource, ElementName=radDataFilter}"
IsFilteringAllowed="True"
CanUserFreezeColumns="False"
AutoGenerateColumns="False"
IsReadOnly="True"
SelectionUnit="FullRow"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Auto">
Could you please look into this and suggest the solution.
Regards,
Narendra Ughade