formtableTabDetail.jsp 1.9 KB
Newer Older
1
<%@page contentType="text/html; charset=UTF-8"%>
2 3 4 5 6
<style>
.fieldTable{
	border:1px solid;
}
</style>
7 8 9 10
<form id="inputForm" method="post" style="width: 100%;">
	<input type="hidden" name="FIELD_OPETYPE" id="OPETYPE" value="${is_row.OPETYPE}" /> <input type="hidden" name="FIELD_UUID" id="UUID" value="${is_row.UUID}" />
	<table align="center" border="0" cellpadding="0" cellspacing="0" class="tableStyle" style="margin: 10px 15px; width: 95%; line-height: 30px;">
		<tr>
罗绍泽 committed
11
			<td style="width: 25%;" class="tableStyleLable">
12 13
				<span>表名:</span>
			</td>
罗绍泽 committed
14
			<td style="width: 70%">
陈玉兰 committed
15
				<input class="easyui-textbox" required="required" id="TABLE_NAME" name="FIELD_TABLE_NAME" value="${is_row.TABLE_NAME}" style="width:200px" />
16 17
			</td>
		</tr>
罗绍泽 committed
18
		<tr>
19 20 21
			<td class="tableStyleLable">
				<span>描述:</span>
			</td>
22 23
			<td>
				<input class="easyui-textbox" required="required" id="CONTENT" name="FIELD_CONTENT" value="${is_row.CONTENT}" style="width:200px" />
24 25
			</td>
		</tr>
罗绍泽 committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
		<tr>
			<td class="tableStyleLable">
				<span>主题行(只能选一个字段):</span>
			</td>
			<td>
				<input class="easyui-textbox" required="required" id="THEME_COLUMN" name="FIELD_THEME_COLUMN" value="${is_row.THEME_COLUMN}" style="width:200px" />
			</td>
		</tr>
		<tr>
			<td class="tableStyleLable">
				<span>查询行(字段名间以英文逗号分隔):</span>
			</td>
			<td>
				<input class="easyui-textbox" required="required" id="SERACH_COLUMN" name="FIELD_SERACH_COLUMN" value="${is_row.SERACH_COLUMN}" style="width:200px" />
			</td>
		</tr>
42
	</table>
陈玉兰 committed
43
	<div>
44 45
		<a href="#" class="easyui-linkbutton" data-options="iconCls:'icon-add',plain:true" onclick="javascript:addLine()">插入一行</a>
		<a href="#" class="easyui-linkbutton" data-options="iconCls:'icon-clear',plain:true" onclick="javascript:deleteLine()">删除行</a>
陈玉兰 committed
46
	</div>
47
	<div style="overflow:auto;width:98%;border:1px solid #ccc;"><table id="fieldTable"></div>
48 49
	</table>
</form>