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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-gis/src/main/webapp/dhis-web-gis/selectMapAndUnit.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
<body onLoad="javascript:changeAction('polygon');selectedFeature('$!feature.featureCode');">
 
2
<script language="javascript">
 
3
function popupAssignUnit(){     
 
4
        window.open("assignUnit.action","","menubar=no,width=750,height=700,resizable=no,scrollbars=yes");
 
5
}
 
6
</script>
 
7
<table width="100%">
 
8
        <tr>
 
9
                <td style="vertical-align:top;">                
 
10
                        #parse( "/dhis-web-commons/ouwt/orgunittree.vm" )
 
11
                </td>
 
12
                <td style="vertical-align:top;">
 
13
                <form name="selectForm" id="selectForm" action="selectMapAndUnit.action" method="post"> 
 
14
                         <fieldset align="center" style="border:#0000FF thin solid; width:460px; height:450px;">
 
15
                        <legend><label>$i18n.getString( "map" )</label></legend>
 
16
                         <embed id=map width="460" height="450" src="map/$mapFile.mapFile" name="map" type="image/svg+xml" align="center"/>
 
17
                        </fieldset>     
 
18
                </form>
 
19
                </td>
 
20
                <td style="vertical-align:top;">                
 
21
                        <input type="button" #if (!$!organisationUnit) disabled #end value="Assign Unit and Map" onclick="javascript:popupAssignUnit();"/>
 
22
                </td>
 
23
        </tr>
 
24
</table>
 
25
 
 
26
 
 
27
</body>
 
28
 
 
29