My js Coding is
function FnGetInitialDataAsync() { $('#DivContents').hide();
$.ajax( { type: "POST", url: "WebServices/Project.asmx/GetInitialData", data: "{}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(Response) { ObjGlobal.SummaryProjectsTickets = Response.d.New; FnBuildPage();
$('#DivPageLoading').hide(); $('#DivContents').show(); }, error: function(Msg) { $('#DivPageLoading').hide(); ShowStatus(1, 'GetInitialData failed'); } });
}
function FnBuildPage() { FnBuildDivGridProjectsSummaryTicket(ObjGlobal.SummaryProjectsTickets); }
ObjKendo.aaa= $("#aaa").kendoGrid( { dataSource: { data: ArrSummaryProjectsTickets, serverFiltering: false, serverPaging: false, pageSiz ...

Go to the complete details ...