roleUserList.jsp 2.2 KB

123456789101112131415161718192021222324
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <%--<t:datagrid name="userList" title="user.manage" actionUrl="roleController.do?roleUserDatagrid&roleId=${roleId}" fit="true" fitColumns="true" idField="id">--%>
  4. <%-- <t:dgCol title="common.id" field="id" hidden="true" ></t:dgCol>--%>
  5. <%-- <t:dgCol title="common.username" sortable="false" field="userName" width="5"></t:dgCol>--%>
  6. <%-- <t:dgCol title="common.real.name" field="realName" width="5"></t:dgCol>--%>
  7. <%--</t:datagrid>--%>
  8. <t:datagrid name="roleUserList" title="common.operation" actionUrl="roleController.do?roleUserDatagrid&roleId=${roleId}"
  9. fit="true" fitColumns="true" idField="id" queryMode="group">
  10. <t:dgCol title="id" field="id" hidden="true"></t:dgCol>
  11. <t:dgCol title="common.username" sortable="false" field="userName" query="true"></t:dgCol>
  12. <t:dgCol title="common.real.name" field="realName" query="true"></t:dgCol>
  13. <t:dgCol title="common.status" sortable="true" field="status" replace="common.active_1,common.inactive_0,super.admin_-1"></t:dgCol>
  14. <t:dgCol title="common.operation" field="opt"></t:dgCol>
  15. <!-- //update-begin--Author:zhangjq Date:20160904 for:1332 【系统图标统一调整】讲{系统管理模块}{在线开发}的链接按钮,改成ace风格 -->
  16. <t:dgDelOpt title="common.delete" url="roleController.do?delUserRole&userid={id}&roleid=${roleId }" urlclass="ace_button" urlfont="fa-trash-o"/>
  17. <!-- //update-end--Author:zhangjq Date:20160904 for:1332 【系统图标统一调整】讲{系统管理模块}{在线开发}的链接按钮,改成ace风格 -->
  18. <%-- <t:dgToolBar title="common.add.param" langArg="common.user" icon="icon-add" operationCode="add" url="userController.do?addorupdate&roleId=${roleId}" funname="add"></t:dgToolBar> --%>
  19. <%-- <t:dgToolBar title="common.edit.param" langArg="common.user" icon="icon-edit" operationCode="edit" url="userController.do?addorupdate&roleId=${roleId}" funname="update"></t:dgToolBar> --%>
  20. <!-- title="common.add.exist.user" -->
  21. <t:dgToolBar title="添加已有用户" icon="icon-add" operationCode="add" url="roleController.do?goAddUserToRole&roleId=${roleId}" funname="add" width="500"></t:dgToolBar>
  22. </t:datagrid>