Hi,
I'm trying to implement grid serialization example:
http://stackoverflow.com/questions/10324565/how-to-get-the-displayed-data-of-kendogrid-in-json-format
On server side I get, Request.Form.Count = 0...
Any help would be appreciated...
Thanks
Shabtai
I'm trying to implement grid serialization example:
http://stackoverflow.com/questions/10324565/how-to-get-the-displayed-data-of-kendogrid-in-json-format
$.ajax({
type:
'post'
,
data: kendo.stringify($(
"#Grid"
).data(
"kendoGrid"
).dataSource.view()),
dataType:
"json"
,
contentType:
"application/json; charset=utf-8"
,
url:
'@Url.Action("CreateExcelFile","Helper")'
,
success:
function
(response) {
},
error:
function
(request, status, errorThrown) {
}
});
Any help would be appreciated...
Thanks
Shabtai