Is there a kendo model object that I can bind the grid options to in a mvc5 controller?
saveGridState:
function
(grid) {
$.ajax({
type:
"POST"
,
contentType:
'application/json; charset=utf-8'
,
dataType:
'json'
,
url: url,
data: JSON.stringify(grid.getOptions())
});
}
//controller method
[HttpPost]
public
void
SaveGridState(
string
gridState)
{
}