Hello shashank.bargaje,
There is no property for setting a grid row limit. However, if you are populating the grid from an external service, you may set the source object’s data.maxRows property so that only the specified number of rows are loaded from the server, e.g.:
var source =
{
datatype: "jsonp",
datafields: [
{ name: 'countryName' },
{ name: 'name' },
{ name: 'population', type: 'float' },
{ name: 'continentCode' }
],
url: "http://ws.geonames.org/searchJSON",
data: {
featureClass: "P",
style: "full",
maxRows: 50
},
formatdata: function (data) {
return "my data";
}
};
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/