We generate a Json DataSource with C# and passing it to a JavaScript var.
var gridAllMessagesData = <%= gridAllMessagesDataSource %>;
$(document).ready(function() {
$("#GRIDAllMessages").kendoGrid({
dataSource: {
data: gridAllMessagesData,
...
Beacause of this we have to load all Data at pageload, which causes very big performance issues.
Ist there any way to load only the grid page, which the user is visiting?
Or is there any best practice to pass data to a Kendo UI grid with ASP?