我需要获取jsgrid的页面大小和页码。根据页码,我需要从数据库中获取记录。因为当我使用超过 100k 条记录时,jsgrid 会卡住并且加载很长时间。
如何获取jsgrid的页码?而且我还想获取搜索文本并将其传递给 cs 方法。我不想通过使用在 jsgrid 中进行过滤
loadData: function (filter) {
return $.grep(clients, function (client) {
return (!filter["fieldname"] || client["fieldname"].toLowerCase().indexOf(filter["fieldname"].toLowerCase()) > -1) )}
它正在过滤jsgrid中加载的数据。我想将搜索文本传递给cs。
获取要在 jsgrid 中绑定的数据,(序列化数据)
DataTable dtItem = // get the data from the DB foreach
(DataRow row in dtItem .Rows)
{
gridList += "{'Id':" + row["ID"] + ",'Name': '" + row["NAME"] + "'}, ";
}
要进行搜索,需要从过滤区域获取数据并将其与页码一起传递给 sql 过程。