Editor annoyance

  • Thread starter Thread starter MikeR
  • Start date Start date
M

MikeR

I've got a table in a form, the cells of which hold the form fields. Every time I save the
page, FP sticks a blank line in the select/option boxes, viewable in the HTML view, which
is where I spend most of my time. So if I save 10 times, I wind up with 10 blanks. I'm not
using CSS or a template.

<select name="Conditions" size="3">







CONDITIONS
<OPTION value=Clear selected>Clear</OPTION>
<OPTION Value="Rainy">Rainy</OPTION>
<OPTION Value="Snow">Snow</OPTION>
</select></td>

This is FP2002, working live on the server. Any way to fix it?
MikeR
 
Your display text (Conditions) needs to be outside if the select statement as say

<form> <table><tr>
<td>Conditions</td>
<td><select name="Conditions" size="3">
<option value="Clear" selected>Clear</option>
<option value="Rainy">Rainy</option>
<option value="Snow">Snow</option>
</select> </td>
</tr></table></form>


--




| I've got a table in a form, the cells of which hold the form fields. Every time I save the
| page, FP sticks a blank line in the select/option boxes, viewable in the HTML view, which
| is where I spend most of my time. So if I save 10 times, I wind up with 10 blanks. I'm not
| using CSS or a template.
|
| <select name="Conditions" size="3">
|
|
|
|
|
|
|
| CONDITIONS
| <OPTION value=Clear selected>Clear</OPTION>
| <OPTION Value="Rainy">Rainy</OPTION>
| <OPTION Value="Snow">Snow</OPTION>
| </select></td>
|
| This is FP2002, working live on the server. Any way to fix it?
| MikeR
 
Back
Top