我正在尝试将日期列的kendo网格过滤器更改为仅显示“From”和“to”。我无法使用MVC Razor语法找到一种方法。
filterable: {
extra: false, //do not show extra filters
operators: { // redefine the string operators
string: {
contains: "Contains",
startswith: "Starts With",
eq: "Is Equal To"
}
}
}
答案 0 :(得分:1)
如果你想使用Razor我猜你使用的是ASP.NET MVC版本,语法是
.Filterable(filterable => filterable
.Extra(false)
.Operators(operators => operators
.ForString(str => str.Clear()
.StartsWith("Starts with")
.IsEqualTo("Is equal to")
.IsNotEqualTo("Is not equal to")
))
)
https://demos.telerik.com/aspnet-mvc/grid/filter-menu-customization