2021-09-02 01:23 PM
I put a group of same small custom containers inside a large container. Then I added this large container to my view. How can I propagate button callback from small container to current view and also identify which small container triggers the callback?
Solved! Go to Solution.
2021-09-06 01:52 AM
Hello AL,
You do it like you would normally propagate a callback from a widget to the view.
The difference is that you create a callback in your container that triggers a callback in your bigger container that triggers a callback in your view and calls the callback handler.
/Alexandre
2021-09-06 01:52 AM
Hello AL,
You do it like you would normally propagate a callback from a widget to the view.
The difference is that you create a callback in your container that triggers a callback in your bigger container that triggers a callback in your view and calls the callback handler.
/Alexandre
2021-09-07 10:42 AM
Thank you.