apps/com.actionsoft.apps.dict/template/page/com.actionsoft.apps.dict.options.htm

127 lines
4.5 KiB
HTML
Raw Normal View History

2022-06-28 01:22:45 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>高级选项</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- JQuery -->
<script type="text/javascript"
src="../commons/js/jquery/scripts/jquery.js"></script>
<!-- AWS UI -->
<link rel="stylesheet" type="text/css" href="../commons/css/awsui.css">
<script type="text/javascript" src="../commons/js/awsui.js"></script>
<script type="text/javascript" src="../commons/js/public.js"></script>
<script type="text/javascript" src="../commons/js/jquery/scripts/ui/datepicker/aws.datepicker-zh-CN.js"></script>
<script type="text/javascript" src="../apps/com.actionsoft.apps.dict/js/com.actionsoft.apps.dict.options.js"></script>
<style>
input[name=title] {
width: 90%;
}
input[name=control] {
width: 90%;
}
input[name=orderIndex] {
width: 80%;
text-align: center;
}
</style>
</head>
<body>
<form id="frameMain" name="frameMain">
<div id="contentDiv" style="padding: 0px 12px;">
<#codeRule>
<fieldset style="margin: 12px 0px;">
<legend>自定义属性</legend>
</fieldset>
<div id="table-top">
<table class="awsui-ux" style="padding: 0;">
<tr>
<td>
<table id="titleTb" class="table table-thin table-condensed"
style="table-layout: fixed;">
<colgroup>
<col align="left" style="width: 200px; min-width: 100px; max-width: 200px">
<col align="center" style="width: 40px; min-width: 40px; max-width: 40px">
<col align="center" style="width: auto; min-width: 100px; max-width: 100px">
<col align="center" style="width: 100px; min-width: 100px; max-width: 100px">
<col align="center" style="width: 95px; min-width: 95px; max-width: 95px">
<col align="center" style="width: 70px; min-width: 70px; max-width: 70px">
</colgroup>
<tbody>
<tr id="thTitle">
<th>字段</th>
<th>启用</th>
<th>标题</th>
<th>UI组件</th>
<th>控制</th>
<th><span style="color: red;">*</span>显示顺序</th>
</tr>
</tbody>
</table>
</div>
<div id="listDiv">
<table id="tableData"
class="table table-thin table-striped table-hover table-condensed"
style="table-layout: fixed;">
<colgroup>
<col align="left" style="width: 200px; min-width: 100px; max-width: 200px">
<col align="center" style="width: 40px; min-width: 40px; max-width: 40px">
<col align="center" style="width: auto; min-width: 100px; max-width: 100px">
<col align="center" style="width: 100px; min-width: 100px; max-width: 100px">
<col align="center" style="width: 95px; min-width: 95px; max-width: 95px">
<col align="center" style="width: 70px; min-width: 70px; max-width: 70px;text-align: center;">
</colgroup>
<tbody>
<#columnHtml>
</tbody>
</table>
</td>
</tr>
</table>
</div>
<div id="table-bottom">
<div id="Pagination"></div>
</div>
<fieldset style="margin: 12px 0px;">
<legend>事件</legend>
</fieldset>
<table class="awsui-ux">
<tr>
<td>
<table style="table-layout: fixed;" class="table awsui-ux">
<tr>
<td><span>记录删除前事件</span></td>
<td colspan="3"><input type="text" name="formBeforeRemove"
style="width: 100%" placeholder="InterruptListener"
value="<#formBeforeRemove>" /></td>
</tr>
<tr>
<td><span>记录删除后事件</span></td>
<td colspan="3"><input type="text" name="formAfterRemove"
style="width: 100%" placeholder="ExecuteListener"
value="<#formAfterRemove>" /></td>
</tr>
<tr>
<td><span>记录修改前事件</span></td>
<td colspan="3"><input type="text" name="formBeforeSave"
style="width: 100%" placeholder="InterruptListener"
value="<#formBeforeSave>" /></td>
</tr>
<tr>
<td><span>记录修改后事件</span></td>
<td colspan="3"><input type="text" name="formAfterSave"
style="width: 100%" placeholder="ExecuteListener"
value="<#formAfterSave>" /></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<input type="hidden" id="sid" name="sid" value="<#sid>" />
<input type="hidden" id="boId" name="boId" value="<#boId>" />
<input type="hidden" id="processInstId" name="processInstId" value="<#processInstId>" />
<input type="hidden" id="processDefId" name="processDefId" value="<#processDefId>" />
</form>
</body>
</html>