~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to local/in/dhis-web-dashboard/src/main/webapp/dhis-web-dashboard/graphicalAnalysisHomePage.vm

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
<html>
 
3
<head>
 
4
<title>Graphical Analyser Home Page</title>
 
5
 
 
6
<script>
 
7
    var selAnalysis = "regularAnalysis";
 
8
    function analysisRadioChangeFunction(evt)
 
9
    {
 
10
        selAnalysis = evt.target.value;
 
11
        if(selAnalysis == "regularAnalysis") iframeForAnalysis.location.href = "graphicalAnalyser.action";
 
12
        else if(selAnalysis == "yearlyAnalysis") alert("Yearly Analysis");
 
13
        else iframeForAnalysis.location.href = "surveyAnalyser.action";
 
14
    } // analysisRadioChangeFunction end
 
15
   
 
16
</script>
 
17
</head>
 
18
<body>
 
19
    <table align="center" style=" border-collapse: collapse; margin-top: 0;" cellpadding="0" cellspacing="0" width="80%" border=0>
 
20
        <tr>
 
21
            <td class="NormalB">        
 
22
                Analysis : 
 
23
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 
24
                <input type="radio" id="analysisRadio" name="analysisRadio" value="regularAnalysis" onclick="analysisRadioChangeFunction(event)" checked> Regular
 
25
                &nbsp;&nbsp;&nbsp;
 
26
                <input type="radio" id="analysisRadio" name="analysisRadio" value="yearlyAnalysis" onclick="analysisRadioChangeFunction(event)"> Yearly
 
27
                &nbsp;&nbsp;&nbsp;
 
28
                <input type="radio" id="analysisRadio" name="analysisRadio" value="surveyAnalysis" onclick="analysisRadioChangeFunction(event)"> Survey
 
29
                <hr /> 
 
30
            </td>
 
31
        </tr>
 
32
        <tr>
 
33
            <td class="NormalB">
 
34
                <iframe name="iframeForAnalysis" id="iframeForAnalysis" src="graphicalAnalyser.action" width="950px" height="600px" scrolling=auto frameborder="0"></iframe>
 
35
            </td>
 
36
        </tr>
 
37
    </table>
 
38
</body>
 
39
</html>        
 
 
b'\\ No newline at end of file'