0

我有几个 jqgrids 正在运行,并且都运行良好。但是,当我进行搜索时,每页只显示十个搜索结果。每当有超过十个结果时,单击第二页对网格没有影响。这是我的控制器操作之一,请特别注意搜索为真的 if satatement....

编辑

我想我可能已经找到了可能导致我的问题的线索。你看我在主网格下有几个子网格。就我的java代码而言,我有object-A,它有一个object-B列表 ,因此A有一个B的子网格。我构建 json 字符串以馈送到网格的方式是遍历A中包含的B列表。我没有写某种查询来说明排序,并限制结果等。

所以我想真正的问题应该是如何在集合上构建一个查找器,以便可以按照我的意愿安排和订购内容?

这是我为上述B描述的我的一个实体所要求的行动。特别注意我所说的person.getContacts()

@RequestMapping(value = "contactjsondata/{pId}", method = RequestMethod.GET)
public @ResponseBody String contactjsondata(@PathVariable("pId") Long personId, Model uiModel, HttpServletRequest httpServletRequest) {
    Person person = Person.findPerson(personId);  
    String column = "id";
if(httpServletRequest.getParameter("sidx") != null){
    column = httpServletRequest.getParameter("sidx");
}
String orderType = "DESC";
if(httpServletRequest.getParameter("sord") != null){
    orderType = httpServletRequest.getParameter("sord").toUpperCase();
}
int page = 1;
if(Integer.parseInt(httpServletRequest.getParameter("page")) >= 1){
    page = Integer.parseInt(httpServletRequest.getParameter("page"));
}
int limitAmount = 10;
int limitStart = limitAmount*page - limitAmount;
List<Contact> contacts = new ArrayList<Contact>(person.getContacts());        
double tally = Math.ceil(contacts.size()/10.0d);
int totalPages = (int)tally;
int records = contacts.size();

    StringBuilder sb = new StringBuilder();
sb.append("{\"page\":\"").append(page).append("\", \"records\":\"").append(records).append("\", \"total\":\"").append(totalPages).append("\", \"rows\":[");
boolean first = true;
for (Contact c: contacts) {
    sb.append(first ? "" : ",");
    if (first) {
        first = false;
    }
    sb.append(String.format("{\"id\":\"%s\", \"cell\":[\"%s\", \"%s\", \"%s\"]}",c.getId(), c.getId(), c.getContactType().getName() ,c.getContactValue()));
}
sb.append("]}"); 
return sb.toString();
}
4

1 回答 1

1

要解决分页问题,​​您需要替换以下代码块

for (Contact c: contacts) {
    sb.append(first ? "" : ",");
    if (first) {
        first = false;
    }
    sb.append(String.format("{\"id\":\"%s\", \"cell\":[\"%s\", \"%s\", \"%s\"]}",c.getId(), c.getId(), c.getContactType().getName() ,c.getContactValue()));
}  

和:

for (int i=limitStart; i<Math.min(records, limitStart+limitAmount); i++){
    Contact c = contacts[i];
    sb.append(first ? "" : ",");
    if (first) {
       first = false;
    }
    sb.append(String.format("{\"id\":\"%s\", \"cell\":[\"%s\", \"%s\", \"%s\"]}",c.getId(), c.getId(), c.getContactType().getName() ,c.getContactValue()));
}

另一种选择是使用 loadonce:true 让 jqGrid 处理分页和排序。在这种情况下,您不需要进行上述更改

于 2012-06-27T17:40:37.367 回答