gijgo
gijgo copied to clipboard
Internal Server Error when not including Pager
This fails with and internal server error.
$(document).ready(function () {
$('#grid').grid({
dataSource: '/Test/GetData',
columns: [
{ field: 'Seq'},
{ field: 'Name'}
]
});
});
While this works fine..
$(document).ready(function () {
$('#grid').grid({
dataSource: '/Test/GetData',
columns: [
{ field: 'Seq'},
{ field: 'Name'}
],
pager: { limit: 5 }
});
});
So how do I remove the pagination?
maybe your json data is too large. Review your code behide