Announcement

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

    ListGrid SelectionAppearance.CHECKBOX - bug ? [NOPE]

    Hello

    I have a problem with checkboxes in a ListGrid with a SelectionAppearance.CHECKBOX.
    Checkboxes are checking/unchecking automatically when using arrow keys (up/down) to navigate within a table - I think it's a bug.
    It works correctly if the ctrl key is down.

    Is there a bugfix for this problem?

    #2
    See ListGrid.arrowKeyAction.

    Comment


      #3
      Thanks for the answer.
      setArrowKeyAction("focus") is really close to what I need, but is it possible to handle the event when user sets focus on a record (row) in ListGrid ?
      I want to add some special action after the focus changes.

      Thank you for your help

      Comment


        #4
        That's really what selectionChanged() is for.

        It sounds like what you really have is 1) normal selection 2) a checkbox column that means something other than selection. If so, reset to normal selectionAppearance and just add a column of type:"boolean" to allow users to check records.

        Comment

        Working...
        X