在Kendo UI网格中,您可以选择为每列上的过滤器UI设置许多属性。我在网格中有一个列定义如下:
{
field: 'task',
title: 'Task',
width: 110,
filterable: {
ui: tasksFilter,
operators: {
string: {
eq: "Is equal to"
}
}
}
}
我希望用户拥有通常通过下拉列表连接的2个选项,他们可以选择"和"或"或"但是"或"是唯一有效的选择。列定义中是否有参数允许我将用户限制为"或"?