自定义kendo日期过滤器和verbiage

问题描述 投票:0回答:1

我正在尝试将日期列的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"
    }
}

}

kendo-ui kendo-grid kendo-asp.net-mvc
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.