I just using kendo grid in my application and in that i need to show 2500 records of a company in a grid. but when i try to bind less data like 200 its working well, but when i try to bind 2500 records it not displaying any data ('No items to display')
Grid to display:
<div id="divSearchResult" >
</div>
kendo bind:
<script>
function BindGridSearchResult(data)
{
$("#divSearchResult").kendoGrid({
dataSource: data,
navigatable: true,
pageable: true,
//toolbar: ["create", "save", "cancel"],
columns: [
{ field: "UnitID", title: "UnitID", width: 110, hidden: true },
{ field: "Nickname", title: "Nickname", width: 110 },
{ field: "ContractNumber", title: "ContractNumber", width: 110 },
{ field: "SerialNumber", title: "SerialNumber", width: 110 },
{ field: "UnitPriority", title: "UnitPriority", width: 110 },
{ field: "Address1", title: "Address1", width: 110 },
{ field: "City", title: "City", width: 110 },
{ field: "Region", title: "Region", width: 110 }]
});
}
</script>
Ajax call to get data:
$.ajax({
url: "/Admin/GetSearchUnit",
data: Data,
success: function (result)
{
debugger;
BindGridSearchResult(result);
//alert("Success");
},
erro: function (error, err) {
alert("Failed");
},
})
Less data: 
Huge Data:

please help me out of this issue..
Thankyou in advance..