Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Font size difference on different rows on ListGrid

    SmartGWT3.1p, FF 18.

    Minor issue, but want to find out why. Please see attached, the upper 4 rows have smaller fonts than the lower ones. There is not special format or CSS applied.

    The html for the upper rows and lower rows are pasted below. For some reason the lower ones are setting font size to 12.

    Code:
    <td height="" align="center" class="cell" style="height: 22px; width: 70px; overflow: hidden;"><div style="overflow: hidden; width: 66px;" cellclipdiv="true" role="presentation"><nobr>Bhasker Reddy</nobr></div></td>
    Code:
    <td height="" align="center" class="cell" style="height: 22px; width: 70px; overflow: hidden; font-size: 12px; color: rgb(51, 51, 51);"><div style="overflow: hidden; width: 66px;" cellclipdiv="true" role="presentation"><nobr>Bhasker Reddy</nobr></div></td>
    Attached Files

    #2
    That looks to be the result of an override of getCellCSSText() or of applying a hilite with a font-size specified.

    If you think it's a framework behavior and not something you're doing, please provide a minimal, ready-to-run test case demonstrating the problem.

    Comment

    Working...
    X