Announcement

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

    Placing two selectitems in ListgridField

    Looking for creating two select-items in list grid field that means in cell itself.

    If anyone come across this stuff...suggest the way to get it..

    #2
    Hi antonychristopher,

    see and set ListGrid.setShowRecordComponents() and ListGrid.setShowRecordComponentsByCell().

    Then override ListGrid.showRecordComponent() and check inside if the column-index is your column (translate to column-name before with ListGrid.getFieldName(int colNum)). If so, return your widgets, if not, return false.

    Best regards,
    Blama

    Comment


      #3
      Hi Blama,

      It works. thank you.

      see and set ListGrid.setShowRecordComponents() and ListGrid.setShowRecordComponentsByCell().

      Then override ListGrid.showRecordComponent() and check inside if the column-index is your column (translate to column-name before with ListGrid.getFieldName(int colNum)). If so, return your widgets, if not, return false.

      Best regards,
      Blama[/QUOTE]

      Comment

      Working...
      X