netGraphConfig.jsp
1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<%@ page contentType="text/html; charset=utf-8" %>
<%@ taglib prefix="a" uri="/WEB-INF/app.tld"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="res" uri="http://www.unidal.org/webres"%>
<%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%>
<a:config>
<res:useJs value="${res.js.local['jquery.validate.min.js']}" target="head-js" />
<res:useJs value="${res.js.local['editor.js']}" target="head-js" />
<script src='${model.webapp}/assets/js/editor/ace.js'></script>
<form name="netGraphConfigUpdate" id="form" method="post"
action="${model.pageUri}?op=netGraphConfigUpdate">
<table class="table table-striped table-condensed table-hover">
<tr><td>
<input id="content" name="content" value="" type="hidden"/>
<div id="editor" class="editor">${model.content}</div>
</td></tr>
<tr>
<td style="text-align:center"><input class='btn btn-primary'
type="submit" name="submit" value="提交" /></td>
</tr>
</table>
</form>
<h4 class="text-center text-danger" id="state"> </h4>
</a:config>
<script type="text/javascript">
$(document).ready(function() {
$('#alert_config').addClass('active open');
$('#netGraphConfigUpdate').addClass('active');
var state = '${model.opState}';
if(state=='Success'){
$('#state').html('操作成功');
}else{
$('#state').html('操作失败');
}
setInterval(function(){
$('#state').html(' ');
},3000);
});
</script>