source: EWD/ewdapps/so/pages/installedapps.ewd@ 1303

Last change on this file since 1303 was 1303, checked in by Sam Habiel, 12 years ago

Added yet another application

File size: 697 bytes
Line 
1<ewd:config pageType="ajax" isFirstPage="false" prePageScript="listEWDApps^ewdu">
2<a href="redir.ewd?nextapp=bb">Bed Board</a><br />
3<a href="redir.ewd?nextapp=ewd-fm">EWD Fileman</a><br />
4<a href="redir.ewd?nextapp=DIINQUIRE">Inquire into File Entries</a>
5<ewd:ajaxOnLoad>
6 var x = function() {
7 apps = <?= #appsjson ?>;
8 var fs = document.getElementById("fs");
9 for (app in apps)
10 {
11 var input = document.createElement("input");
12 input.setAttribute('id',apps[app]);
13 input.setAttribute('type','button');
14 input.setAttribute('value',apps[app]);
15
16 fs.appendChild(input);
17 };
18 }();
19</ewd:ajaxOnLoad>
20
Note: See TracBrowser for help on using the repository browser.