You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.2 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>属性</title>
<script type="text/javascript" src="../../../Scripts/bootstrap/js/jquery.min.js"></script>
<script src="../../../../WF/Scripts/QueryString.js" type="text/javascript"></script>
<link href="../../../../DataUser/Style/ccbpm.css" rel="stylesheet" type="text/css" />
<!-- 引用通用的js文件. -->
<script type="text/javascript" src="../../../Scripts/config.js"></script>
<script type="text/javascript" src="../../../Comm/Gener.js"></script>
<script type="text/javascript" language="javascript">
//页面启动函数.
$(function () {
$("#Msg").html("正在加载,请稍后......");
var frmID = GetQueryString("FK_MapData");
var en = new Entity("BP.Sys.MapData", frmID);
$("#TB_Attr").val(en.BodyAttr);
$("#Msg").html("");
});
//装载 模版.
function Save() {
var frmID = GetQueryString("FK_MapData");
var en = new Entity("BP.Sys.MapData", frmID);
en.BodyAttr = $("#TB_Attr").val();
en.Update();
Reload();
}
</script>
</head>
<body>
<form id="cc">
<div style="right:10px; position:absolute; z-index:100; top:-3px">
<input type=button value="保存" onclick="Save()" />
</div>
<table style="width:100%;">
<caption>表单body属性</caption>
<tr>
<td>
<textarea id="TB_Attr" name="TB_Attr" style="width:98%;" rows="10">
</textarea>
</td>
</tr>
<tr>
<td>
<fieldset>
<label>帮助</label>
<ul>
<li>该配置,会被动态的加载到表单解析器里。</li>
<li>您可以在这里增加样式script 等属性</li>
</ul>
</fieldset>
</td>
</tr>
</table>
</form>
</body>
</html>