Sorry, if this is a repeat, but I don't see my original question posted,
so I'm wondering if it got stuck on a mail-server somewhere.

Anyhow, I've got a DynLayer, which contains a form, which contains a table,
which contains 4 form elements, namely a file input, two text fields, and
a text area.  For some reason, only one of my text fields is rendering
in the browser, while the others seem to be taking up space in the table,
but not rendering.  My code works fine on IE.  And, if take out the contents
of my layer and stuff them into NS, they seem to work there as well -- so
I'm pretty sure I haven't done anything like forgetting to close a tag.

Has anyone seen this sort of problem?  Do you think it's a NS bug or a
DynLayer bug?

Attached is a picture of the problem, and the html that gets copied into
the layer via the setHTML() call.

short.gif

<form name="Step0_fm">
<table border="1" cellspacing="0" cellpadding="4" align="left">
<tr>
<td colspan="2"><font face="Verdana,Arial,Helvetica, Sans-serif"
size="2">To attach a new document to &lt;file location&gt;,browse
and select a file from your local filesystem or type in a web
link.</font></td>
</tr>

<tr>
<td align="right" nowrap valign="top" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif" size="2"><input name=
"uploadType" type="radio" checked>Attach Document:</font></td>
<td valign="top" align="left" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif"><input name="fileName"
type="file" value="the file name"></font></td>
</tr>

<tr>
<td align="right" nowrap valign="top" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif" size="2"><input name=
"uploadType" type="radio">Attach Web Link:</font></td>
<td valign="top" align="left" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif"><input name="linkName"
value="the link name"></font></td>
</tr>

<tr>
<td align="right" nowrap valign="top" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif" size="2">Document
Title:<font color="red">*</font></font></td>
<td valign="top" align="left" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif"><input name="itemName"
size="40" maxlength="50" value="the document title"></font></td>
</tr>

<tr>
<td align="right" nowrap valign="top" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif" size=
"2">Description:</font></td>
<td valign="top" align="left" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif"><textarea name="itemDesc"
cols="29" rows="3" wrap="virtual"></textarea></font></td>
</tr>

<tr>
<td align="right" nowrap valign="top" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif" size=
"2">Keywords:</font></td>
<td valign="top" align="left" width="50%"><font face=
"Verdana, Arial, Helvetica, sans-serif"><font face=
"Verdana,Arial,Helvetica, Sans-serif" size="2">Enter keywords which
can later be used to search for this document. Use commas or spaces
to separate keywords.<br>
</font><input type="text" name="itemKeywords" size="40" maxlength=
"50" value=""></font></td>
</tr>
</table>
</form>

Reply via email to