i have added all property for search,filter and sorting on component art grid but these functionality is not working.how can i run these functionality?
i m designing a menu(this is not context menu) for sorting.grouping an show column of grid.i want to confirm is there any inbuilt compatibility between menu and grid or i have to do code for that
<xmlgrd:DataGrid Name="Searchkeyword" VerticalAlignment="Top" Margin="0,0,20,0" Grid.Row="2" AllowSorting="True" SearchBoxVisibility="Visible" AllowPaging="False" ShowColumnFilters="True" ScrollBar.Scroll="Grid_Scroll" >
<xmlgrd:DataGrid.Columns>
<xmlgrd:DataGridTextColumn Header="Name" Width="200" Binding="{Binding name}" AllowSearching="True" ShowFilter="True" AllowSorting="True" AllowGrouping="True" />
<xmlgrd:DataGridTextColumn Header="Age" Width="100" Binding="{Binding age}" AllowSearching="True" ShowFilter="True" AllowSorting="True" AllowGrouping="True"/>
<xmlgrd:DataGridTextColumn Header="Date" Width="100" Binding="{Binding Date}" AllowSearching="True" ShowFilter="True" AllowSorting="True" AllowGrouping="True"/>
<xmlgrd:DataGridTextColumn Header="Salary" Width="100" Binding="{Binding salary}" AllowSearching="True" ShowFilter="True" AllowSorting="True" AllowGrouping="True"/>
</xmlgrd:DataGrid.Columns>
</xmlgrd:DataGrid>
Searchkeyword.ItemsSource = dtSerachKeyword.DefaultView;