Hello!
I am trying to pre filter my Kendo Grid, but have not found a way to do so.
The filtering works just fine; I just need a way to initialize the filter on setup.
Code Snippet:
.Columns(columns =>
{
columns.Bound(p => p.myColumn)
.Filterable(f => f.Extra(false))
.Title("MyColumn");
})
.Filterable(x => x.Enabled(true)
.Operators(o => o.ForEnums(e => e.Clear()
.IsEqualTo("Is equal to")
.IsNotEqualTo("Not equal to")))
)
I am trying to pre filter my Kendo Grid, but have not found a way to do so.
The filtering works just fine; I just need a way to initialize the filter on setup.
Code Snippet:
.Columns(columns =>
{
columns.Bound(p => p.myColumn)
.Filterable(f => f.Extra(false))
.Title("MyColumn");
})
.Filterable(x => x.Enabled(true)
.Operators(o => o.ForEnums(e => e.Clear()
.IsEqualTo("Is equal to")
.IsNotEqualTo("Not equal to")))
)