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