75 lines
2.7 KiB
HTML
75 lines
2.7 KiB
HTML
|
|
<!DOCTYPE html >
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
|
|
<title>Pal Search</title>
|
||
|
|
<link rel="stylesheet" href="../commons/css/awsui.css">
|
||
|
|
|
||
|
|
<script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.userdefined.js'></script>
|
||
|
|
|
||
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/jquery.js"></script>
|
||
|
|
<script type="text/javascript" src="../commons/js/awsui.js"></script>
|
||
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/ui/reference/jquery-ui.js"></script>
|
||
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/ui/aws.grid.js"></script>
|
||
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/ui/aws.grid-localize-zh.js"></script>
|
||
|
|
|
||
|
|
<script type="text/javascript" src="../<I18N#COEPATH>/js/coe.pal.pl.search.js"></script>
|
||
|
|
|
||
|
|
<script type="text/javascript">
|
||
|
|
var attributes = <#attributes>;
|
||
|
|
<#schema>
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</head>
|
||
|
|
<body style="overflow-x:hidden;">
|
||
|
|
<table id="search_range" class="awsui-ux">
|
||
|
|
<tbody>
|
||
|
|
<tr>
|
||
|
|
<td class="awsui-ux-title">查找范围</td>
|
||
|
|
<td colspan="3"><input id="searchRange" class="awsui-textbox" type="text" readonly="true" value="<#palPath>" /></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td class="awsui-ux-title">模型类型</td>
|
||
|
|
<td>
|
||
|
|
<input id="fileType" class="awsui-combobox">
|
||
|
|
</td>
|
||
|
|
<td class="awsui-ux-title">模型名称</td>
|
||
|
|
<td><input id="fileName" class="awsui-textbox" type="text"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td class="awsui-ux-title">元素类型</td>
|
||
|
|
<td><input id="shapeType" class="awsui-combobox"></td>
|
||
|
|
<td class="awsui-ux-title">元素名称</td>
|
||
|
|
<td><input id="shapeName" class="awsui-textbox" type="text"></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<td class="awsui-ux-title">使用属性过滤</td>
|
||
|
|
<td>
|
||
|
|
<input class="awsui-checkbox" id="useAttrSearch" type="checkbox" />
|
||
|
|
</td>
|
||
|
|
<td></td>
|
||
|
|
<td>
|
||
|
|
<div>
|
||
|
|
<button type="button" class="button blue" onclick="search();">查询</button>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
<div id="search_div" style="display: none; width: 795px;">
|
||
|
|
<div id="search_grid_array"></div>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<div id="result_grid_array"></div>
|
||
|
|
</div>
|
||
|
|
<div id="exportDlg" style="width: 400px; height: 350px; display: none;">
|
||
|
|
<div style="height: 265px; border: solid 1px rgb(204, 204, 204); overflow: auto;">
|
||
|
|
<ul id="attributes_ul" style="margin-top: 5px; margin-left: 20px;"></ul>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<input type="hidden" id="wsId" name="wsId" value="<#wsId>"/>
|
||
|
|
<input type="hidden" id="plId" name="plId" value="<#plId>"/>
|
||
|
|
<input type="hidden" id="sid" name="sid" value="<#sid>"/>
|
||
|
|
</body>
|
||
|
|
</html>
|