angular-ui/ui-grid

Expandable with enableFullRowSelection

Open

#7089 aperta il 22 giu 2020

Vedi su GitHub
 (2 commenti) (0 reazioni) (1 assegnatario)JavaScript (2496 fork)batch import
good first issuegrid-selection

Metriche repository

Star
 (5395 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

When enableFullRowSelection is also used, the click event on the expand button also triggers the selection.

Ideally this would caught in the toggleRowExpansion function, but for those in immediate need, at the end of me on.rowExpandedStateSelection you can add something like:

              if (event !== undefined && event.currentTarget !== undefined && event.currentTarget.tagName === "I")
              {

// Cancel bubble of event }

This way the full row selection isn't executed.

Guida contributor