Blazor Hierarchical Grid Advanced Filtering Example column types are not configured correctly:
https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/grids/hierarchical-grid/advanced-filtering#blazor-hierarchical-grid-advanced-filtering-example
<!-- .... -->
<IgbColumn
Field="Debut"
Header="Debut"
DataType="GridColumnDataType.Number"
></IgbColumn>
<IgbColumn
Field="GrammyNominations"
Header="Grammy Nominations"
DataType="GridColumnDataType.String"
></IgbColumn>
<IgbColumn
Field="GrammyAwards"
Header="Grammy Awards"
DataType="GridColumnDataType.String"
></IgbColumn>
<!-- .... -->
That makes the display odd on the Debut which is clearly an year and forces string filters on the numeric Grammy columns:
The artist names are fairly unique and only the 2 other Grammy columns are allowed for filtering, leaving very little meaningful filters to apply in the sample, beyond Nominations = 2 which works as string as well at least.
Fix the column types and/or re-evaluate the data source used for the sample if it doesn't offer enough to showcase the filtering functionality.
Blazor Hierarchical Grid Advanced Filtering Example column types are not configured correctly:
https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/grids/hierarchical-grid/advanced-filtering#blazor-hierarchical-grid-advanced-filtering-example
That makes the display odd on the Debut which is clearly an year and forces string filters on the numeric Grammy columns:
The artist names are fairly unique and only the 2 other Grammy columns are allowed for filtering, leaving very little meaningful filters to apply in the sample, beyond Nominations = 2 which works as string as well at least.
Fix the column types and/or re-evaluate the data source used for the sample if it doesn't offer enough to showcase the filtering functionality.