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

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

Now menu system sort of works

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