<ig
:XamGrid Name="m_MainGrid" ItemsSource="{Binding Path=BindingItemSource, Mode=TwoWay}"
AutoGenerateColumns="False" Height="391" Style="{StaticResource XamGridStyle}"
command:XamGridRowSelectionChanged.Command="{Binding Path=DataGridSelectionChangedCommand}"
command:XamGridRowSelectionChanged.CommandParameter="{Binding ElementName=m_MainGrid, Path=SelectionSettings.SelectedRows}"
command:XamGridLoaded.Command="{Binding Path=XamGridLoadedCommand}"
command:XamGridMouseLeftButtonUp.Command="{Binding Path=XamGridMouseLeftButtonUpCommand}"
command:XamGridSorting.SortingCommand="{Binding Path=ColumnSortingCommand}" Filtering="m_MainGrid_Filtering" Filtered="m_MainGrid_Filtered">
<ig:XamGrid.FilteringSettings>
<ig:FilteringSettings AllowFiltering="FilterMenu" CustomFilterDialogStyle="{StaticResource ColumnFilterDialogControlStyle}"></ig:FilteringSettings>
</ig:XamGrid.FilteringSettings>
<ig:XamGrid.RowSelectorSettings>
<ig:RowSelectorSettings Visibility="Visible" EnableRowNumbering="False">
</ig:RowSelectorSettings>
</ig:XamGrid.RowSelectorSettings>
<ig:XamGrid.SelectionSettings>
<ig:SelectionSettings RowSelection="Multiple">
</ig:SelectionSettings>
</ig:XamGrid.SelectionSettings>
<ig:XamGrid.PagerSettings>
<ig:PagerSettings AllowPaging="Bottom" Style="{StaticResource PagerCellControlStyle}">
</ig:PagerSettings>
</ig:XamGrid.PagerSettings>
<ig:XamGrid.ColumnMovingSettings>
<ig:ColumnMovingSettings AllowColumnMoving="Indicator">
</ig:ColumnMovingSettings>
</ig:XamGrid.ColumnMovingSettings>
<ig:XamGrid.GroupBySettings>
<ig:GroupBySettings EmptyGroupByAreaContent="{Binding Path=Message.DATATABLE_GROUPBYAREA_EMPTYCONTENT, Source={StaticResource UIStrings}}" />
</ig:XamGrid.GroupBySettings>
</ig:XamGrid>
How to trigger the Filtering or Filtered event?
If you are using the FilterMenu there was a bug that prevented the Filtering events from firing, which was addressed in the last service release (if memory serves) . Please ensure you are using the latest Service Release and let me know if this resolves your issue.
I have got the latest Services Release,but this does not resolve my issue.
The "InfragisticsSL4.Controls.Editors.v10.3.dll" file version is 10.3.20103.2065
I have not been able to reproduce your claim with the listed build, could you attach a sample showing what you are doing?
I,m sorry,I writed the wrong file name;
I want to trigger the Filtering or Filtered event,("AllowFiltering="FilterMenu")
Thank you