Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / actions / view.gsp @ 58

History | View | Annotate | Download (751 Bytes)

1
<html>
2

    
3
<head>
4
	<title>Scenarios</title>
5
	<meta name="layout" content="main" />
6
</head>
7

    
8
<body>
9
	
10
	<erptr:box title="View scenarios">
11
		<p>Scenarios are saved internally in the logic module.</p>
12
		<p>You can view and edit them here.</p>
13
	</erptr:box>
14
	
15
	<erptr:box title="Scenarios">
16
		<div name="scenariosHolder" id="scenariosHolder" >
17
			<p><img src="${resource(dir:'img/',file:'spinner.gif')}" style="float:left;position:relative;top:-2px;" />&nbsp;&nbsp;Retrieving scenarios. Please wait...</p>
18
		</div>
19
	</erptr:box>
20

    
21
	<g:javascript>
22
	function includeToOnLoadDo() {
23
		new Ajax.Updater('scenariosHolder','<g:createLink action="getActions" />',{asynchronous:true,evalScripts:true});
24
	}
25
	</g:javascript>
26

    
27
</body>
28

    
29
</html>