Kendo UI ASP.NET MVC GUI Configuration

Is there a way to define the parameterMap parameter for the Kendo interface grid through ASP.NET server-side wrappers?

I need to change the local time in UTC before sending the server command to the server, and this is the only way to do this.

+5
source share
1 answer

Sorting...

You can specify a string as a parameter parameterMap, and this string can be either a JavaScript function directly, or the name of a JavaScript function that is on the page.

.parameterMap("myParamMapFunction");

or

.parameterMap("function(data){ /* do stuff with the data */}");

+2
source

All Articles