Announcement

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

    ListGrid Record Expanded Status

    How might one access the expansion status of a ListGridRecord? Something similar to:

    Code:
    myGrid.isRecordExpanded(aListGridRecord);
    I ask this because I wanted to make my record click handler expand the record so people don't have to use the little plus/minus icons.

    #2
    You do it on a record, with:
    Code:
    myRecord.getAttributeAsBoolean("expanded");
    And of course, you can call:
    Code:
    myGrid.expandRecord(myRecord);
    -Ken

    Comment


      #3
      Thanks, that did the trick!

      Comment

      Working...
      X