Announcement

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

    bug in ListGrid.js (and the correct code)

    found in LGPL Build SmartClient_SC_SNAPSHOT-2010-08-16

    ListGrid.js line 14157
    Code:
    if (this.recordComponentPostion != null) return this.recordComponentPosition;
    should be
    Code:
    if (this.recordComponentPosition != null) return this.recordComponentPosition;
    I found this one while trying to reproduce the Smart GWT grid cell widgets example with smartClient LGPL. My component is always written below the cell content instead of "within". Maybe this feature is not ready yet?

    #2
    Thanks, this has been fixed and the fix will appear in the next nightly build.

    Comment

    Working...
    X