source: EWD/ewdapps/DIINQUIRE/pages/index.ewd@ 1311

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

DIINQUIRE, now functional

File size: 1.7 KB
Line 
1<ewd:config isFirstPage="false" prePageScript="FILES^C0EDIINQUIRE">
2<html>
3<head>
4<title>Inquire into File Entries</title>
5<script type="text/javascript">
6 var VISTA = {}; //Mi Casa
7
8 VISTA.getEntries = function(value) {
9 ewd:ENTRY^C0EDIINQUIRE(value);
10 document.getElementById('fsEntry').style.visibility = 'visible';
11 };
12
13 VISTA.showInqOpts = function() {
14 document.getElementById('fsInqOptions').style.visibility = 'visible';
15 }
16</script>
17</head>
18<body>
19<h1>Inquire into File Entries</h1>
20<form method="post" action="ewd">
21 <fieldset id="fsFile">
22 <label for="file">File:</label><select name="file" onChange="VISTA.getEntries(this.value)"></select>
23 <input type="button" value="Select" onClick="VISTA.getEntries(document.getElementById('file').value)">
24 </fieldset>
25 <fieldset id="fsEntry" style="visibility: hidden">
26 <label for="entry">Entry: </label><select name="entry" onChange="VISTA.showInqOpts()"></select>
27 <input type="button" value="Select" onClick="VISTA.showInqOpts()" />
28 </fieldset>
29 <fieldset id="fsInqOptions" style="visibility: hidden">
30 <p>Inquire Options</p>
31 <label for="R">Record Number:</label><input id="R" type="checkbox" name="outopt" value="R" /><br />
32 <label for="C">Computed Fields:</label><input id="C" type="checkbox" name="outopt" value="C" /><br />
33 <label for="A">Audit: </label><input id="A" type="checkbox" name="outopt" value="A" /><br />
34 <input type="submit" value="Submit" name="submit" ajax="true" nextpage="outputter" targetId="output" />
35 </fieldset>
36</form>
37<div id="output" style="font-family: Monospace; left: 10%; white-space: pre">
38</div>
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.