是否可以为kendoGrid设置自定义过滤器,其中输入的值不会表现为自动完成,但会在您为字符串包含时自动过滤?像角度ng-show?当前行为,您必须从查找中选择或键入值并单击过滤器。
答案 0 :(得分:0)
如果有人碰到这个,这是我的解决方案:
filterable: {
cell: {
inputWidth: 125,
showOperators: false,
template: function (args)
{
$(args.element).bind("keyup change", function (e)
{
dtSource.filter({ field: "fistName", operator: "contains", value: args.element[0].value});
});
}
}
}