サーバー側の並べ替えやサーバー側のページングを行っていることを確認してください。質問から私はグリッド内の次/前ボタンをクリックするとサーバーから次のページデータを取得しようとしていることを理解しています。あなたの目的が単にページングデータを取得することであれば、以下のロジックが役立ちます。サーバー側のソート+サーバー側のページングに興味がある場合は、同様のアプローチが必要です。
サーバーサイドページングのロジック: ページあたり50個のレコードとして表示する必要がある合計1000個のレコードがあるとします。 最初の50ページのレコードを最初のページに表示し、次に次のボタンをクリックすると、データベースからグリッドに表示される次の50レコードを取得したいと仮定しています。
あなたはonPaging:機能は必要ありません。ただページングを設定するだけで十分です。
は何が必要その後ゲッターとセッター
// 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;
}
でJavaクラスの変数を次があります取得したレコードごとにグリッドのフィールドを設定するためのいくつかの計算です。
// 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;
出典
2012-02-16 18:40:41
Ani
ありがとうございました!私はそれを試してみましょう。ご存知のように、私はサーバー側のページングとクライアント側の並べ替えが必要です。私は、サーバー側からjqridに変数を追加する必要がありますか?または、次の/ prevボタンをクリックしたときに、これらの値が自動的にjqgridからサーバー側に移動することはありますか?再度、感謝します。 – user590586
サーバー側のページングを実現したいので、グリッドをソートするために、残りのデータをサーバーから取り出す必要があります。したがって、クライアント側のソートは機能しません。結果セットをソートするには、データベースクエリで動的order by句を使用する必要があります。 (!SIDX = NULL && sidx.equals( "")){\t \t \t \t \t \t \t \t \t setOrderByField(sortMap.get(SIDX))場合は、このようなものを使用することができます。 \t \t \t \t \t setOrderBy(sord); \t \t \t \t \t \t \t \t}他{ \t \t \t \t \t //何のソートが選択されていない場合は、いかなる場合でデフォルトの順序を行います。 \t \t \t \t \t setOrderByField( "employeeId"); \t \t \t \t \t setOrderBy(desc); \t \t \t – Ani
グリッド列名をデータベース列名にマップするには、プロパティファイルまたは静的マップを設定する必要があります。また、ソートやページネーションに関連するすべての変数はデフォルトでグリッドに表示されるので、グリッド内で外部に指定する必要はありません。 – Ani