-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table: Enable row selection event #234
Comments
Hi @CristianDDias , The Regarding the best regards, |
Hi @vbersch I think the I think would be better to use the Here is a Codesandbox example about what we would expect from the table. I created an issue for the UI5 Web Components. |
Can we close this issue as this was resolved in the UI5 Web Components Issue thread? |
Hi @MarcusNotheis, you can close the issue. Thanks. |
Is your feature request related to a problem? Please describe.
We are using the
Table
component but we need to select a table row, which is not possible. We tried to use theAnalyticalTable
component but it needs arowHeight
props, which is not possible in our case, because the row height can be different for each table row (dynamic height).Describe the solution you'd like
An
onClick
callback function for the table row, which is fired when the user selects a table row. This callback function receives as a parameter the selected row.Describe alternatives you've considered
Access the
shadowRoot
of theTable
web component and add anonClick
event listener for eachtr
element and expose this callback function.The text was updated successfully, but these errors were encountered: