Hi support team,
we need filterable: { mode: "row" } to have a filter row.
We also need a DropDownList for a boolean column in the filter as described here:
https://docs.telerik.com/kendo-ui/knowledge-base/grid-boolean-dropdownlist-filter
When using this we see an ugly filter row item:
I expect to have the DropDownList in the filter row.
This worked using following MVC template syntax in the past
.Filterable(f => f.Multi(false).Cell(c => c.ShowOperators(false)
.Template(@<text>
function(args) {
args.element.kendoDropDownList({
autoBind: false,
dataTextField: "text",
dataValueField: "value" ,
dataSource: new kendo.data.DataSource({
data: [{ text: "Ja" , value: "true" },
{ text: "Nein" , value: "false" }]
}),
index: 0,
optionLabel: {
text: "Filter" ,
value: ""
},
valuePrimitive: true
})
}
</text>
is this a bug?