Kendo Grid對於「dt」字段具有「日期等於」的默認過濾器。對於「名稱」字段,它具有默認篩選器「等於」,但我想將「包含」移動到選項列表的第一位,並將其設置爲字符串的默認值。它如何實施?Kendo Grid MVC:字符串字段的默認過濾器設置爲「等於」
public class MyClass
{
public DateTime dt { get; set; }
public string name { get; set; }
}
@(Html.Kendo()
.Grid<MyClass>()
.Name("grid")
.DataSource(data =>
data.Ajax()
.ServerOperation(false)
.Read(read =>
read.Action("MyAction", "MyController"))
)
.Columns(cols =>
{
cols.Bound(x => x.dt).Title("Date").Width(150);
cols.Bound(x => x.name).Title("Name").Width(250);
})
.Filterable()
.Sortable())
雖然它解決了問題中描述的問題,但它引發了一個新問題,即locale .js文件中指定的本地化將不再應用於各個字符串。 –