C# 如何重命名Asp.Net核心剑道网格过滤器中的按钮?

C# 如何重命名Asp.Net核心剑道网格过滤器中的按钮?,c#,kendo-ui,kendo-grid,kendo-asp.net-mvc,C#,Kendo Ui,Kendo Grid,Kendo Asp.net Mvc,我尝试更改Asp.Net核心剑道网格中的过滤器按钮,但它仅适用于操作员: .Filterable(filterable => filterable .Extra(true) .Messages(msg => msg.Info("Text1").Filter("Text2").Clear("Text3")) .Operators(operators => operators.ForString(str => str.Clear().StartsWith(

我尝试更改Asp.Net核心剑道网格中的过滤器按钮,但它仅适用于操作员:

.Filterable(filterable => filterable
  .Extra(true)
  .Messages(msg => msg.Info("Text1").Filter("Text2").Clear("Text3"))
  .Operators(operators => operators.ForString(str =>
    str.Clear().StartsWith("Text4").EndsWith("Text5").Contains("Text6")))
)
所以我可以看到Text4,Text5,Text6,但是Text1,Text2,Text3是不可见的,并且保留了它们原来的意思

有什么问题吗


Asp.Net Core 2.2,剑道UI v2018.2.516

在清除之前缺少一个点(@FrozenButcher,这是复制粘贴错误,请修复它。Text1、Text2、Text3的问题仍然存在