Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过服务器端 ASP.NET MVC 包装器为 Kendo UI Grid 定义 parameterMap 选项?
在向服务器发送过滤命令之前,我需要将本地时间更改为 UTC 时间,这似乎是唯一的方法。
有点...
您可以指定一个字符串作为parameterMap设置,该字符串可以是直接的 JavaScript 函数,也可以是在页面上找到的 JavaScript 函数的名称。
parameterMap
.parameterMap("myParamMapFunction");
或者
.parameterMap("function(data){ /* do stuff with the data */}");