Java easyui树形表格TreeGrid的实现代码

2018-09-12 13:30 更新

自己搞了一下午,终于用JAVA实现了数据网格。记录一下实现的代码。(PS:此处的easyui是1.5版本,楼主只贴了核心的代码)

实现图

JSP页面

  1. <head>
  2. <script type="text/javascript">
  3. //权限列表
  4. $( document ).ready(function(){
  5. var parentId = 0;
  6. $('#tt').treegrid({
  7. url:'queryPrivilege.action?parentId='+parentId,
  8. idField:'id',
  9. treeField:'RecordStatus',
  10. columns:[[
  11. {title:'id',field:'id',width:180},
  12. {field:'RecordStatus',title:'RecordStatus',width:180} ,
  13. {field:'PrivilegeOperation',title:'PrivilegeOperation',width:180}
  14. ]],
  15. onBeforeExpand:function(row){
  16. //动态设置展开查询的url
  17. $(this).treegrid('options').url = 'queryPrivilege.action?parentId='+row.id;
  18. }
  19. });
  20. })
  21. </script>
  22. </head>
  23. <body>
  24. <table id="tt" style="width:600px;height:400px"></table>
  25. </body>

java代码

action层代码

  1. //输出
  2. public PrintWriter out()throws IOException{
  3. HttpServletResponse response=ServletActionContext.getResponse();
  4. response.setContentType("text/html");
  5. response.setContentType("text/plain; charset=utf-8");
  6. PrintWriter out= response.getWriter();
  7. return out;
  8. }
  9. public String queryPrivilege() throws IOException{
  10. returnpd="ok";
  11. JSONArray array =new JSONArray();
  12. array = privilegeService.getMenu(parentId);
  13. String str=array.toString();
  14. out().print(str);
  15. out().flush();
  16. out().close();
  17. return returnpd;
  18. }

Service层接口代码

  1. public abstract JSONArray getMenu(int parentId);

ServiceImpl层代码(实现service层)

  1. @Override
  2. public JSONArray getMenu(int parentId) {
  3. // TODO Auto-generated method stub
  4. return (JSONArray)privilegeDao.getMenu(parentId);
  5. }

Dao层代码接口代码

  1. public abstract JSONArray getMenu(int parentId);

DaoImpl层代码(实现Dao层)

  1. @Override
  2. public JSONArray getMenu(int parentId) {
  3. // TODO Auto-generated method stub
  4. String hql="";
  5. JSONArray array=new JSONArray();
  6. hql="FROM Privilege p WHERE p.parentID = "+parentId;
  7. for(Privilege privilege:(List<Privilege>)(getSession().createQuery(hql).list())){
  8. JSONObject jo=new JSONObject();
  9. jo.put("id", privilege.getId());
  10. jo.put("RecordStatus", privilege.getRecordStatus());
  11. jo.put("parendId",privilege.getParentID());
  12. if(privilege.getParentID()==0){
  13. jo.put("state","closed");
  14. }
  15. else{
  16. jo.put("state","open");
  17. System.out.println(parentId);
  18. }
  19. array.add(jo);
  20. }
  21. return array;
  22. }

数据库一览

转载地址:http://www.jb51.net/article/108687.htm

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号