-
Notifications
You must be signed in to change notification settings - Fork 168
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
ComponentRenderer and Grid selection Bug #4313
Comments
It might be that this bug is already fixed in release. There is a listener indeed for click events in the renderer. |
I took a look at this issue and this is coming from the This will dispatch a As a solution if you have more complex components that have an impact on the selection you could select the row programmatically. |
@bisam-rd Is there a specific reason for which you are using |
The problem in the provided example is caused exactly by the usage of the In V10, the The problem with For example, if you use a
Also, this is not a bug in the
To make interactive content elements to trigger the selection of the row when they are clicked, an explicit click handler needs to be added on the server side:
... but my suggestion is to avoid using the |
Description of the bug
We faced an issue to select a row when we use a
ComponentRenderer
.In the following example, it's quite tricky to select a row via the second column.
We suspect that the
ComponentRenderer
'consume' the click event. Using the dev console of chrome, we did not observe any event sent to the backend.Bug observed in v10.0.0-rc5
The text was updated successfully, but these errors were encountered: