Hi,
I'm currently working on a kendo grid using MVC helpers, and I've been having a bit of a hard time to find a way to set a individual filter as extra = true.
Here is the code that I'm using to disable the extra filters for the grid:
This is at the end of the grid and works just fine.
However I want to have a single column as extra (the date column to be precise), however the column Filterable only takes a bool (whether it's filterable or not at all).
I would be very grateful if you could point me in the right direction regarding this.
Thanks,
W. Akram
I'm currently working on a kendo grid using MVC helpers, and I've been having a bit of a hard time to find a way to set a individual filter as extra = true.
Here is the code that I'm using to disable the extra filters for the grid:
.Filterable(fltr => fltr.Extra(
false
).Messages(m => m.IsTrue(
" Yes"
).IsFalse(
" No"
)).Operators(op => op.ForString(str => str.Clear()))))
This is at the end of the grid and works just fine.
However I want to have a single column as extra (the date column to be precise), however the column Filterable only takes a bool (whether it's filterable or not at all).
I would be very grateful if you could point me in the right direction regarding this.
Thanks,
W. Akram