Hello,
I'm trying to replace filter widget in filter row in grid and detail grids.
My replacement should be standard text box input: <input class="k-input" id="fullName" style="width: 100%;" placeholder="Hledat subjekt">
It would be perfect if i can set template of this filter cell when defining columns like this:
columns: [
{
field: "color",
filterable: {
cell: {
template: <input class="k-input" id="fullName" style="width: 100%;" placeholder="Hledat subjekt">
},
showOperators: false
}
}
}
I'd like to define it by html element or by kendo element if there is such (i have not found any)
Can you help me with solution please?