Hi there,
the company I am working for is close to purchase the Kendo UI Complete for ASP.NET MVC, but there is some prerequisite points.
The first one is the read method to build the grid. It has to be a GET method instead of a POST one. Is there a way to change it? I did it in kendo.aspnetmvc.min.js directly
and this one:
the grid seems to work fine, I just want to make sure that there will not be any issue later because of this change.
In case of this is not the proper way to do it, is there any other way?
Thank you for your help,
the company I am working for is close to purchase the Kendo UI Complete for ASP.NET MVC, but there is some prerequisite points.
The first one is the read method to build the grid. It has to be a GET method instead of a POST one. Is there a way to change it? I did it in kendo.aspnetmvc.min.js directly
var
n = window.kendo, r = /'/ig, i = e.extend;
[...]
options: {read: {type:
"GET"
},update: {type:
"POST"
},create: {type:
"POST"},destroy: {type: "
POST
"},parameterMap: s,prefix: "
"}})}})...
and this one:
var
n = window.kendo, r = n.ui, i = e.extend, s = e.isFunction;
[...]
options: {read: {type:
"GET"
},update: {type:
"POST"
},create: {type:
"POST"
},destroy: {type:
"POST"
}...
the grid seems to work fine, I just want to make sure that there will not be any issue later because of this change.
In case of this is not the proper way to do it, is there any other way?
Thank you for your help,