I'm using kendo-ui grid and I want to create a totally custom column filter. Is there a way to pass a template or something like this to the grid?
EDIT:
Another question: is there a way to catch the click on "filter" button inside the filter view?
I'm using kendo-ui grid and I want to create a totally custom column filter. Is there a way to pass a template or something like this to the grid?
EDIT:
Another question: is there a way to catch the click on "filter" button inside the filter view?
You could use the filterMenuInit event of the Grid to attach a click handler to the "Clear" and "filter" button.
for Clear button in
function filterMenuInit(e) {
e.container.on("click", "[type='reset']", function () {
alert("Clear button clicked");
});
}