ElemeFE / element-react

Element UI
https://elemefe.github.io/element-react/index
MIT License
2.83k stars 443 forks source link

Disable onRowClick for one column of row #1105

Closed noBloodOnTheLeaves closed 3 years ago

noBloodOnTheLeaves commented 3 years ago

Hello, I need to turn off the onClick for row selection on a single column of a row. One of the columns in my table have type: selection. I don't want the clicking of checkbox to trigger the select row, but clicking any other column should.

Is there a way to achieve this?

noBloodOnTheLeaves commented 3 years ago

Sorry for the stupid question. i added one more parameter onRowClick={(item,row) => this.rowClick(item,row)} and catched checkbox in row.target.type. Thank documentation for it :D