Another bug - possibly related to wide grids
I've been creating some tabbed grids some of which are wide.
I've found one now where the last column doesn't display any data if a CSS is defined for it.
That is, if I have these CSS definitions (including one for a hidden column to get around the missing end of grid bug I reported previously) -
AW generates the following code -
But as soon as I add a CSS for the 17th column -
AW generates this code -
So the span for cell 17 just vanishes. I'm at a loss to explain this as it doesn't happen in the other wide grids.. This happens in both IE6 and FF2.x.
I've found one now where the last column doesn't display any data if a CSS is defined for it.
That is, if I have these CSS definitions (including one for a hidden column to get around the missing end of grid bug I reported previously) -
#gridwho_sqm .aw-column-15 {width:75px}
#gridwho_sqm .aw-column-16 {width:45px}
#gridwho_sqm .aw-column-18 {width:9px}
AW generates the following code -
<span id="gridwho_sqm-cell-15-7" class="aw-item-template aw-templates-cell aw-grid-cell aw-column-15 aw-cells-normal" tabindex="-1" title="">29776.43.0</span>
<span id="gridwho_sqm-cell-16-7" class="aw-item-template aw-templates-cell aw-grid-cell aw-column-16 aw-cells-normal" tabindex="-1" title="">1</span>
<span id="gridwho_sqm-cell-17-7" class="aw-item-template aw-templates-cell aw-grid-cell aw-column-17 aw-cells-normal" tabindex="-1" title="">1</span>
<span id="gridwho_sqm-row-7-end" class="aw-item-template aw-grid-cell aw-column-space">
<span id="gridwho_sqm-row-7-end-box" class="aw-item-box"/>
But as soon as I add a CSS for the 17th column -
#gridwho_sqm .aw-column-15 {width:75px}
#gridwho_sqm .aw-column-16 {width:45px}
#gridwho_sqm .aw-column-17 {width:45px}
#gridwho_sqm .aw-column-18 {width:9px}
AW generates this code -
<span id="gridwho_sqm-cell-15-7" class="aw-item-template aw-templates-cell aw-grid-cell aw-column-15 aw-cells-normal" tabindex="-1" title="">29776.44.0</span>
<span id="gridwho_sqm-cell-16-7" class="aw-item-template aw-templates-cell aw-grid-cell aw-column-16 aw-cells-normal" tabindex="-1" title="">1</span>
<span id="gridwho_sqm-row-7-end" class="aw-item-template aw-grid-cell aw-column-space">
<span id="gridwho_sqm-row-7-end-box" class="aw-item-box"/>
So the span for cell 17 just vanishes. I'm at a loss to explain this as it doesn't happen in the other wide grids.. This happens in both IE6 and FF2.x.
Anthony
November 26,