dbSourceList.jsp 2.3 KB

12345678910111213141516171819202122232425262728
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  4. <div class="easyui-layout" fit="true">
  5. <div region="center" style="padding:0px;border:0px">
  6. <t:datagrid name="dbSourceList" title="common.datasource.manage" actionUrl="dynamicDataSourceController.do?datagrid" idField="id" fit="true" sortName="id" sortOrder="desc">
  7. <t:dgCol title="common.id" field="id" hidden="true"></t:dgCol>
  8. <t:dgCol title="common.dbname" field="dbName" hidden="false" width="50"></t:dgCol>
  9. <t:dgCol title="common.datasrouce.key" field="dbKey" width="50"></t:dgCol>
  10. <t:dgCol title="common.description" field="description" width="60"></t:dgCol>
  11. <t:dgCol title="common.driverclass" field="driverClass" width="100"></t:dgCol>
  12. <t:dgCol title="common.datasrouce.url" field="url" width="120"></t:dgCol>
  13. <t:dgCol title="common.dbuser" field="dbUser" width="50"></t:dgCol>
  14. <t:dgCol title="common.dbpassword" field="dbPassword" width="100" hidden="true"></t:dgCol>
  15. <t:dgCol title="common.dbtype" field="dbType" width="50"></t:dgCol>
  16. <!-- // update-start--Author:chenjin Date:20160808 for:数据源列表页面操作字段样式有问题 -->
  17. <t:dgCol title="common.operation" field="opt"></t:dgCol>
  18. <!-- // update-end--Author:chenjin Date:20160808 for:数据源列表页面操作字段样式有问题 -->
  19. <!-- update-begin--Author:zhangjq Date:20160904 for:[1342]【系统图标统一调整】讲{消息中间件}{系统监控}的链接按钮,改成ace风格的-->
  20. <t:dgDelOpt title="common.delete" url="dynamicDataSourceController.do?del&id={id}" urlclass="ace_button" urlfont="fa-trash-o"/>
  21. <!-- update-end--Author:zhangjq Date:20160904 for:[1342]【系统图标统一调整】讲{消息中间件}{系统监控}的链接按钮,改成ace风格的-->
  22. <t:dgToolBar title="common.add" icon="icon-add" operationCode="add" url="dynamicDataSourceController.do?addorupdate" funname="add"></t:dgToolBar>
  23. <t:dgToolBar title="common.edit" icon="icon-edit" operationCode="edit" url="dynamicDataSourceController.do?addorupdate" funname="update"></t:dgToolBar>
  24. <t:dgToolBar title="common.view" icon="icon-search" url="dynamicDataSourceController.do?addorupdate" funname="detail"></t:dgToolBar>
  25. </t:datagrid>
  26. </div>
  27. </div>