mirror of https://gitee.com/jeecg/jeecg.git
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.
99 lines
3.2 KiB
99 lines
3.2 KiB
<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@include file="/context/mytags.jsp"%>
|
|
<t:base type="jquery,easyui,tools,DatePicker"></t:base>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><t:mutiLang langKey="common.datasource.manage"/></title>
|
|
<t:base type="jquery,easyui,tools,DatePicker"></t:base>
|
|
</head>
|
|
<body style="overflow-y: hidden" scroll="no">
|
|
<t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="dynamicDataSourceController.do?save">
|
|
<input id="id" name="id" type="hidden" value="${dbSourcePage.id }">
|
|
<table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
|
|
<tr>
|
|
<td align="right">
|
|
<label class="Validform_label">
|
|
<t:mutiLang langKey="common.dbtype"/>:
|
|
</label>
|
|
</td>
|
|
<td class="value">
|
|
<input class="inputxt" id="dbKey" name="dbKey"
|
|
value="${dbSourcePage.dbKey}" datatype="*">
|
|
<span class="Validform_checktip"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">
|
|
<label class="Validform_label">
|
|
<t:mutiLang langKey="common.description"/>:
|
|
</label>
|
|
</td>
|
|
<td class="value">
|
|
<input class="inputxt" id="description" name="description"
|
|
value="${dbSourcePage.description}" datatype="*">
|
|
<span class="Validform_checktip"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">
|
|
<label class="Validform_label">
|
|
<t:mutiLang langKey="common.driverclass"/>:
|
|
</label>
|
|
</td>
|
|
<td class="value">
|
|
<input class="inputxt" id="driverClass" name="driverClass"
|
|
value="${dbSourcePage.driverClass}" datatype="*">
|
|
<span class="Validform_checktip"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">
|
|
<label class="Validform_label">
|
|
<t:mutiLang langKey="common.datasrouce.url"/>:
|
|
</label>
|
|
</td>
|
|
<td class="value">
|
|
<input class="inputxt" id="url" name="url"
|
|
value="${dbSourcePage.url}" datatype="*">
|
|
<span class="Validform_checktip"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">
|
|
<label class="Validform_label">
|
|
<t:mutiLang langKey="common.dbuser"/>:
|
|
</label>
|
|
</td>
|
|
<td class="value">
|
|
<input class="inputxt" id="dbUser" name="dbUser"
|
|
value="${dbSourcePage.dbUser}" datatype="*">
|
|
<span class="Validform_checktip"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">
|
|
<label class="Validform_label">
|
|
<t:mutiLang langKey="common.dbpassword"/>:
|
|
</label>
|
|
</td>
|
|
<td class="value">
|
|
<input class="inputxt" id="dbPassword" name="dbPassword" ignore="ignore"
|
|
value="${dbSourcePage.dbPassword}">
|
|
<span class="Validform_checktip"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">
|
|
<label class="Validform_label">
|
|
<t:mutiLang langKey="common.dbtype"/>:
|
|
</label>
|
|
</td>
|
|
<td class="value">
|
|
<t:dictSelect field="dbType" typeGroupCode="dbtype" hasLabel="false" defaultVal="${dbSourcePage.dbType}"></t:dictSelect>
|
|
<span class="Validform_checktip"></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</t:formvalid>
|
|
</body> |