Announcement

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

    API ListGridRecord.isGroupNode() missing?

    Hi Isomorphic,

    I'm overriding ListGrid.getCellCSSText(ListGridRecord record, int rowNum, int colNum) in order to redesign some rows.
    My styling depends on the row beeing a groupNode and some other criteria.

    My question is how I can find out if a record is a groupNode? I have ListGridRecord.getIsGroupSummary() and ListGridRecord.getIsGridSummary(), but no ListGridRecord.getIsGroupNode() or a convenience ListGridRecord.getIsNormalRecord().
    I could most likely look for the PK-field values for the latter, but I think at least ListGridRecord.getIsGroupNode() is really missing (in 4.1p). Could you add it or tell me how I can tell apart group nodes from the rest?

    Thank you & Best regards,
    Blama

    #2
    Use ListGrid.isGroupNode().

    Comment

    Working...
    X