Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
230
How to trigger the event?
posted

<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?

Parents
No Data
Reply
  • 21382
    posted

    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.

Children