http://www.positioniseverything.net/explorer/dup-characters.html
I found something, it seems that it is a bug of IE6. Unfortunately the fixes
did not work for me.
We have a table and in some rows we have subtables:
<tr id="attorney<s:property value="ipNbr"/><s:property
value="#account.accountNumber"/>" class="attorneylist invisible">
<td colspan="4">
<div style="height: auto;">
<s:if test="#accountstatus.last">
<div class="connector_line_final" style="height:
100%"></div>
</s:if>
<s:else>
<div class="connector_line_continue"></div>
</s:else>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<th align="left"
style="width:50px;color:#444;">Bevollm</th>
<th align="left"
style="width:80px;border-left:1px solid #fff;">Personen Nr</th>
<th align="left"
style="width:300px;border-left:1px solid #fff;">Name</th>
<th align="left"
style="width:100px;border-left:1px solid #fff;">Geb Dat</th>
<th align="left"
style="width:150px;border-left:1px solid #fff;">Rolle</th>
<th align="left"
style="width:75px;border-left:1px solid #fff;">Generalvollm</th>
</tr>
</thead>
<tfoot></tfoot>
<tbody>
<s:iterator value="#account.attorneys"
status="attorneystatus" id="attorney">
<s:url id="selectCustomerUrl"
action="selectCustomer">
<s:param name="ipNbr"
value="accountSearchResults.ipNbr" />
<s:param name="ipNbrType"
value="accountSearchResults.ipNbrType" />
<s:param name="accountNbr"
value="#account.accountNumber" />
<s:param name="bankCodeNbr"
value="#account.bankCodeNumber" />
<s:param name="attorneyNbr"
value="#attorney.ipNbr" />
<s:param name="attorneyType"
value="#attorney.authorityType" />
<s:param name="generalAttorney"
value="#attorney.generalAttorney" />
<s:param name="token" value="token" />
</s:url>
<s:url id="commitResultsUrl"
action="returnToCallingApplication">
<s:param name="token" value="token" />
</s:url>
<tr id="row<s:property
value="ipNbr"/><s:property value="#account.accountNumber"/><s:property
value="#attorney.ipNbr"/>" title="<s:text
name="info.customer.select.attorney"/>" class="<%= trclass %>"
onclick="setRowColorAndCheck('<s:property value="ipNbr"/><s:property
value="#account.accountNumber"/><s:property value="#attorney.ipNbr"/>');
updateDiv('selectedcustomer', '${selectCustomerUrl}');" <s:if
test="%{inputParameters.withReturnUrl == true}"> ondblclick="location.href =
'${commitResultsUrl}'"</s:if>>
<td style="width:50px;border-top:1px
solid #ccc;height:21px;">
<input type="radio"
name="attorneyRadio" id="radio<s:property value="ipNbr"/><s:property
value="#account.accountNumber"/><s:property value="#attorney.ipNbr"/>"
style="padding:0px;margin-left:17px;" />
</td>
<td style="width:80px;border-top:1px
solid #ccc;border-left:1px solid #8CDB5A;height:21px;"><s:property
value="#attorney.ipNbr"/></td>
<td style="width:300px;border-top:1px
solid #ccc;border-left:1px solid #8CDB5A;height:21px;"><s:property
value="#attorney.nameLine1"/></td>
<td style="width:100px;border-top:1px
solid #ccc;border-left:1px solid #8CDB5A;height:21px;"><s:property
value="#attorney.birthday"/> </td>
<td style="width:150px;border-top:1px
solid #ccc;border-left:1px solid #8CDB5A;height:21px;"><s:text
name="%{#attorney.authorityType}"/></td>
<s:if test="#attorney.generalAttorney ==
true">
<td style="width:75px;border-top:1px
solid #ccc;border-left:1px solid #8CDB5A;height:21px;">Ja</td>
</s:if>
<s:else>
<td style="width:75px;border-top:1px
solid #ccc;border-left:1px solid #8CDB5A;height:21px;">Nein</td>
</s:else>
</tr>
</s:iterator>
</tbody>
</table>
</div>
<div style="clear: both"></div>
</td>
</tr>
The row is display correctly but a text fragment of the content of <s:text
name="%{#attorney.authorityType}"/> appears right below this row. This just
happened at the end of the table.
I hate IE6 :-)
Best regards,
Marc
2009/6/16 dusty <[email protected]>
>
> Usually that means you have the td outside the table tag somehow. Is that
> table terminated in the middle of your setup and not restarted?
>
>
>
> Marc Eckart-2 wrote:
> >
> > Hi,
> >
> > we have a struts2 application and we implemented the ajax functions
> > with jquery.
> > We now load some html tables with ajax in different divs. Now we have
> > the phenomenon that some text fragments of a <td> is displayed under
> > the table, but I can't find it somewhere in the dom tree.
> >
> > When I mark the fragment also the text in the <td> is marked. Very
> > strange.
> >
> > Does anyone know this phenomenon?
> >
> > Best Regards,
> > Marc
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [email protected]
> > For additional commands, e-mail: [email protected]
> >
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/OT%3A-Problem-with-IE6-and-JQuery-%28-%29-tp24056118p24056377.html
> Sent from the Struts - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>