Click to See Complete Forum and Search --> : Hide the Drop-box


Pratibha
03-13-2003, 09:24 AM
Hi All,

I would like to hide the row in my .jsp page.


<tr><td align=right><b>*Application</b></td>
<td><select name="apid">
<% appList(request.getRemoteUser().toLowerCase(), out); %>
</select></td></tr>

I would like the above table row to be invisible when I call this .jsp page in browser as I don't want to show this row but need to use the apid value in my java page.

Thanks in advance!
Pratibha Marisetti
(Systems Administrator)

pyro
03-13-2003, 10:12 AM
Try this:

<tr style="display: none">
<td align=right>
<b>*Application</b>
</td>
<td>
<select name="apid">
<% appList(request.getRemoteUser().toLowerCase(), out); %>
</select>
</td>
</tr>