我正在尝试将服务器端排序添加到我的网格中,所以我添加了这个:
onPaging : function(which_button) {
_$("#myGrid").setGridParam({datatype: "xml"});
_$("#myGrid").trigger('reloadGrid');
}
当我点击下一页按钮时,它会转到我的服务器并再次加载网格,所以我再次看到第一页的记录。我的问题是如何连接有关网格记录和我的服务器的数据?是否有服务器端分页的完整示例?我还需要传递到我的服务器以获取下一页的当前记录吗?我需要添加到我的网页以及服务器页面的内容?
任何帮助都将获得批准,
感谢提前。
答案 0 :(得分:1)
请确认您正在进行服务器端排序或服务器端分页。根据我的理解,您正在尝试通过单击网格中的next / prev按钮从服务器检索下一页数据。如果您的目标只是获取分页数据,那么低于逻辑会有所帮助。如果您对服务器端排序+服务器端分页感兴趣,则需要遵循类似的方法。
服务器端分页的逻辑: 让我们假设您总共有1000条记录,每页必须显示50条记录。 我假设您只显示第一个50条记录,同时在第一页显示记录,然后单击下一个按钮,您要检索要在数据库中显示在网格中的下50条记录。
您不需要onPaging:功能。只需设置分页:true即可。
使用getter和setter
在java类中包含以下变量// Total pages
private Integer total = 0;
//get how many rows we want to have into the grid - rowNum attribute in the grid
private Integer rows = 0;
//Get the requested page. By default grid sets this to 1.
private Integer page = 0;
// All Record
private Integer records = 0;
// sorting order ascending or descending
private String sord;
// get index row - i.e. user click to sort
private String sidx;
/**
* @return the total
*/
public Integer getTotal() {
return total;
}
/**
* @param total the total to set
*/
public void setTotal(Integer total) {
this.total = total;
}
/**
* @return the rows
*/
public Integer getRows() {
return rows;
}
/**
* @param rows the rows to set
*/
public void setRows(Integer rows) {
this.rows = rows;
}
/**
* @return the page
*/
public Integer getPage() {
return page;
}
/**
* @param page the page to set
*/
public void setPage(Integer page) {
this.page = page;
}
/**
* @return the records
*/
public Integer getRecords() {
return records;
}
/**
* @param records the records to set
*/
public void setRecords(Integer records) {
this.records = records;
if(this.records > 0 && this.rows > 0){
this.total = (int)Math.ceil((double) this.records/(double) this.rows);
}else{
this.total = 0;
}
}
/**
* @return the sord
*/
public String getSord() {
return sord;
}
/**
* @param sord the sord to set
*/
public void setSord(String sord) {
this.sord = sord;
}
/**
* @return the sidx
*/
public String getSidx() {
return sidx;
}
/**
* @param sidx the sidx to set
*/
public void setSidx(String sidx) {
this.sidx = sidx;
}
之后,您需要的是根据检索到的记录设置网格字段的一些计算。
//假设你总共有1000条记录。这应该动态设置。暂时将其硬编码为1000。
setRecords(1000);
// for first time when we have page=0, it should
// be page =1;
// If last page is required and if page no crosses total count
int displayCount = count/rows;
int remainder = count%rows;
page = (page<=displayCount?page:count==0?0:remainder==0?displayCount:displayCount+1);
int to = (getRows() * getPage());
int from = to - getRows();
if (to > getRecords()) to = getRecords();
if (from > to) {
from = 0;
page = 1;
}
setTotal((int) Math.ceil((double) getRecords() / (double) getRows()));
if(getTotal() == 0) page =0;