Hallo liebe Forums-Helfer,
ich das Problem, dass ein Formularbereich die Zellenhöhe beeinflusst. Hat jemand eine Idee, wie man das verhindern kann?!
Ausschnitt aus HTML-Code:
<td style="height:20px;" align="center">
<form method="POST" action="pm_undecided_papers.jsp?direction=LISTBOX&action=move&idSubmission=<%=theSub.getId() %>&newPosSub=<%=theSub.getPositionInPapers()%>">
<select style="position:relative; top:10px;" name="newPos" size="1" onchange="submit()">
<% for(int i = 1; i <= theSubCol.count(); i++){ %>
<option <%if(theSub.getPositionInPapers()== i){%> selected <%}%>>
<%= i %>
</option>
<%}%>
</select>
</form>
</td>
Zur Erläuterung: Die jsp Elemente sind nicht relevant, denn wenn man
den Formularbereich auskommentiert, zeigt er die Zelle wieder in der richtigen Höhe an?!
Vielen Dank für Eure Hilfe!
Sanjoy