Hi, I am currently using a hierarchy grid based on data grid like the following demo. I wanted to know how filtering and sorting could be achieved in this hierarchy data grid.
Q1. Filtering seems to not be working if my DataSource is refined with linQ operators .
Q2.is there a way to group, order and select grid data in Sf grid?
https://blazor.syncfusion.com/demos/datagrid/hierarchy-grid?theme=bootstrap5
<SfGrid Data="@Instance" TValue="Tvalue"/>
@code{
public IEnumerable<
Tvalue
> Instances { get; set; }
//I am using linQ operators to refine my data Input.
Instances = results.OrderByDescending(x=>x.parameter).GroupBy(x =>x.parameter2).Select(x =>x.First());
}
thanks
ym