Hi,
Please help me out from this issue.
my kendo grid is not showing data over 285 records. i dont know why it is doing that. but i can tell you my code.
i m using kendo grid with asmx web services. JSON is the data type.
i checked my service that it is calculating fine and sending data is also fine. but after send, kendo grid not showing it. if I limit the data to 100 or 200 rows then it shows but over this limit it is showing a blank screen.
I want to show over 10,000 rows and not to use virtual and paging.
CODE SAMPLE :
$("#SearchGrid").kendoGrid({
height: 820,
selectable: true,
groupable: true,
filterable: true,
sortable: true,
columns: [
{ field: "PartNo", title: "Part", width: "40px" },
{ field: "NewNo", title: "New No", width: "40px" },
{ field: "PartDesc", title: "Desc", width: "50px" },
{ field: "WH_31", title: "31", width: "20px" },
{ field: "WH_32", title: "32", width: "20px" },
{ field: "WH_34", title: "34", width: "20px" },
{ field: "WH_35", title: "35", width: "20px" },
{ field: "WH_36", title: "36", width: "20px" },
{field: "MinRate", title: "Rate", width: "20px" },
{ field: "Grade", title: "ABC", width: "20px" },
{ field: "LocationCode", title: "BIN", width: "20px" }
],
dataSource: {
schema: {
model: {
id: "PartID"
},
data: "d"
},
transport: {
read: {
url: "abc.asmx/Status",
contentType: "application/json; charset=utf-8",
type: "POST",
dataType: "json"
},
parameterMap: function (data, operation) {
return JSON.stringify({ PartNo: part, Group: GROUP, Code: info })
}
}
}
});
}
Please help me out
Please help me out from this issue.
my kendo grid is not showing data over 285 records. i dont know why it is doing that. but i can tell you my code.
i m using kendo grid with asmx web services. JSON is the data type.
i checked my service that it is calculating fine and sending data is also fine. but after send, kendo grid not showing it. if I limit the data to 100 or 200 rows then it shows but over this limit it is showing a blank screen.
I want to show over 10,000 rows and not to use virtual and paging.
CODE SAMPLE :
$("#SearchGrid").kendoGrid({
height: 820,
selectable: true,
groupable: true,
filterable: true,
sortable: true,
columns: [
{ field: "PartNo", title: "Part", width: "40px" },
{ field: "NewNo", title: "New No", width: "40px" },
{ field: "PartDesc", title: "Desc", width: "50px" },
{ field: "WH_31", title: "31", width: "20px" },
{ field: "WH_32", title: "32", width: "20px" },
{ field: "WH_34", title: "34", width: "20px" },
{ field: "WH_35", title: "35", width: "20px" },
{ field: "WH_36", title: "36", width: "20px" },
{field: "MinRate", title: "Rate", width: "20px" },
{ field: "Grade", title: "ABC", width: "20px" },
{ field: "LocationCode", title: "BIN", width: "20px" }
],
dataSource: {
schema: {
model: {
id: "PartID"
},
data: "d"
},
transport: {
read: {
url: "abc.asmx/Status",
contentType: "application/json; charset=utf-8",
type: "POST",
dataType: "json"
},
parameterMap: function (data, operation) {
return JSON.stringify({ PartNo: part, Group: GROUP, Code: info })
}
}
}
});
}
Please help me out