Package com.iisigroup.cap.response

Examples of com.iisigroup.cap.response.GridResult


  @HandlerType(HandlerTypeEnum.GRID)
  public GridResult query(ISearch search, IRequest params) {
    Map<String, IFormatter> fmt = new HashMap<String, IFormatter>();

    Page<Remind> page = commonSrv.findPage(Remind.class, search);
    return new GridResult(page.getContent(), page.getTotalRow(), fmt);
  }// ;
View Full Code Here


    Map<String, IFormatter> fmt = new HashMap<String, IFormatter>();
    fmt.put("styleTyp", new CodeTypeFormatter(codeTypeService, "styleTyp"));
    fmt.put("unit", new CodeTypeFormatter(codeTypeService, "unitMins"));

    Page<Reminds> page = commonSrv.findPage(Reminds.class, search);
    return new GridResult(page.getContent(), page.getTotalRow(), fmt);
  }// ;
View Full Code Here

TOP

Related Classes of com.iisigroup.cap.response.GridResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.