Marc Polizzi
Marc Polizzi

Reputation: 9375

material-ui onDblClick table row

I'm using Material-UI (v1.2.3) w/ Typescript.

I am trying to handle double click for a table row as following:

<TableRow onDblClick={that.handleRowDblClick(val)}

Unfortunately, it seems this property does not exist on TableRow.

Is there any way to achieve this ?

Upvotes: 2

Views: 6451

Answers (1)

thirtydot
thirtydot

Reputation: 228162

https://reactjs.org/docs/events.html#mouse-events

Does it work with onDoubleClick?

An old React issue: Why is onDoubleClick not named onDblClick?

Upvotes: 5

Related Questions