You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jeecg/WebContent/webpage/system/dbsource/dbSourceList.jsp

22 lines
1.5 KiB

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="/context/mytags.jsp"%>
<t:base type="jquery,easyui,tools,DatePicker"></t:base>
<div class="easyui-layout" fit="true">
<div region="center" style="padding:1px;">
<t:datagrid name="dbSourceList" title="common.datasource.manage" actionUrl="dynamicDataSourceController.do?datagrid" idField="id" fit="true">
<t:dgCol title="common.id" field="id" hidden="true"></t:dgCol>
<t:dgCol title="common.datasrouce.key" field="dbKey" ></t:dgCol>
<t:dgCol title="common.description" field="description" ></t:dgCol>
<t:dgCol title="common.driverclass" field="driverClass" ></t:dgCol>
<t:dgCol title="common.datasrouce.url" field="url" ></t:dgCol>
<t:dgCol title="common.dbuser" field="dbUser" ></t:dgCol>
<t:dgCol title="common.dbpassword" field="dbPassword" ></t:dgCol>
<t:dgCol title="common.dbtype" field="dbType" ></t:dgCol>
<t:dgCol title="common.operation" field="opt" width="100"></t:dgCol>
<t:dgDelOpt title="common.delete" url="dynamicDataSourceController.do?del&id={id}" />
<t:dgToolBar title="common.add" icon="icon-add" url="dynamicDataSourceController.do?addorupdate" funname="add"></t:dgToolBar>
<t:dgToolBar title="common.edit" icon="icon-edit" url="dynamicDataSourceController.do?addorupdate" funname="update"></t:dgToolBar>
<t:dgToolBar title="common.view" icon="icon-search" url="dynamicDataSourceController.do?addorupdate" funname="detail"></t:dgToolBar>
</t:datagrid>
</div>
</div>