source: ether_visual/trunk/form_projection.jsp @ 396

Last change on this file since 396 was 17, checked in by cbipsl, 18 years ago

ajout V3

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1<%if (graph_sel.equals(VERTICAL_ANALYSIS) || graph_sel.equals(TIME_ANALYSIS) || graph_sel.equals(XY_PLOT) || graph_sel.equals(_2D_TRAJECTORY)) {%>
2<input type="hidden" value="0" name="map_projection">
3<input type="hidden" value="1" name="hemisphere">
4
5<%
6}
7else {%>
8<tr>
9<td>
10<table border="0" cellpadding="2" cellspacing="2" width="800">
11<tr><td class='rubrique'><b>GEOGRAPHIC PROJECTION</b></td></tr>
12</table>
13</td>
14</tr>
15<table border="0" cellpadding="2" cellspacing="2" width="800">
16  <tr>
17    <td nowrap><input type="radio" onClick="document.thisForm.hemisphere.disabled=true;" name="map_projection" value="0" <%if (map_projection.equals("0")) out.write("checked");%>></td>
18        <td class="normal" nowrap>Standard (latitude/longitude grid)</td>
19        <td width="40">&nbsp;</td>
20    <td align="right"><input type="radio" onClick="document.thisForm.hemisphere.disabled=false;" name="map_projection" value="1" <%if (map_projection.equals("1")) out.write("checked");%>></td>
21        <td class="normal" nowrap align="left">Stereopolar (</td>
22        <td nowrap>
23        <select name="hemisphere" <%if (map_projection.equals("0")) {out.write("disabled");} else {out.write("");}%>>
24        <option value="1" <%if (hemisphere.equals("1")) out.write("selected");%>>North</option>
25        <option value="2" <%if (hemisphere.equals("2")) out.write("selected");%>>South</option>
26        </select></td>
27        <td class="normal" nowrap> Pole)</td>
28        <td width="100%">&nbsp;</td>
29        </tr>
30        <%if ((!sel_tpl_name.equals("") && !sel_tpl_name.equals("null")) && (graph_sel.equals("") || graph_sel.equals("null"))) {%>
31        <tr>
32        <td colspan=8 class="normal" nowrap><i>Select a graph</i>&nbsp;&nbsp;<a href="#" onClick="openListGraph('2','1','<%=graph_sel%>')"><img src="Icons/infos.gif" width="17" height="17" border="0" align="absmiddle"></a></td>
33
34        </tr>
35        <%}%>
36</table>
37</td>
38</tr>
39<%}%>
40
Note: See TracBrowser for help on using the repository browser.