onMouseEnter, onMouseLeave in RowProps #126
Unanswered
dandelionn
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! I have noticed that we can only set onClick and onDoubleClick events in RowProps. Are there any plans to add onMouseEnter, onMouseLeave events? I need to be able to retrieve the id of the row when this events happen.
export declare type RowProps<T extends TableNode> = { item: T; className?: string; disabled?: boolean; onClick?: OnClick<T>; onDoubleClick?: OnClick<T>; children: React.ReactNode; } & RestProps;
Beta Was this translation helpful? Give feedback.
All reactions