Here is an app: www.sheldonlg.com/JSstops.htm
It passes strict W3C validation.
**In IE6**, if you click on the plus, a sub-table appears. Click on the
plus from the subtable and nothing happens. It should expand one or two
more levels of subtables.
Modifying just about anything will cause the all the subtable (or at
least one more to appear.
For example, removing the line:
<div id="header">Tes t</div>
will cause it to expand two more levels while removing the line:
<div class="DHTMLSui te_menuItem_top _regular" id="DHTMLSuite_ menuItem1"
style="FLOAT: left"></div>
or the block:
<tr>
<td align="center">
<select id="fiscalPerio d" name="fiscalPer iod">
<option></option>
</select>
</td>
</tr>
or the line:
<caption style="FONT-WEIGHT: 800; FONT-SIZE: 16px">Spending</caption>
will cause it to expand one more level.
(I distilled this from my AJAX framework app and corrected all the
changes that IE6 made when I did a document:write in the menu bar).
I thought that it has something to do with the css for the menuing
system, but I don't think so now. I say this because if I remove the
entire menuing tags:
<div class="DHTMLSui te_menuBar_top" >
<div class="DHTMLSui te_menuItem_top _regular"
id="DHTMLSuite_ menuItem1" style="FLOAT: left"></div>
</div>
then is only expands one more level. The last level still doesn't work.
Can someone give me a clue as to what is happening here?
It passes strict W3C validation.
**In IE6**, if you click on the plus, a sub-table appears. Click on the
plus from the subtable and nothing happens. It should expand one or two
more levels of subtables.
Modifying just about anything will cause the all the subtable (or at
least one more to appear.
For example, removing the line:
<div id="header">Tes t</div>
will cause it to expand two more levels while removing the line:
<div class="DHTMLSui te_menuItem_top _regular" id="DHTMLSuite_ menuItem1"
style="FLOAT: left"></div>
or the block:
<tr>
<td align="center">
<select id="fiscalPerio d" name="fiscalPer iod">
<option></option>
</select>
</td>
</tr>
or the line:
<caption style="FONT-WEIGHT: 800; FONT-SIZE: 16px">Spending</caption>
will cause it to expand one more level.
(I distilled this from my AJAX framework app and corrected all the
changes that IE6 made when I did a document:write in the menu bar).
I thought that it has something to do with the css for the menuing
system, but I don't think so now. I say this because if I remove the
entire menuing tags:
<div class="DHTMLSui te_menuBar_top" >
<div class="DHTMLSui te_menuItem_top _regular"
id="DHTMLSuite_ menuItem1" style="FLOAT: left"></div>
</div>
then is only expands one more level. The last level still doesn't work.
Can someone give me a clue as to what is happening here?
Comment