cancel
Showing results for 
Search instead for 
Did you mean: 

How to propagate a flex button callback from a container inside another container to current view?

AL
Associate II

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?

1 ACCEPTED SOLUTION

Accepted Solutions
Alexandre RENOUX
Principal

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

View solution in original post

2 REPLIES 2
Alexandre RENOUX
Principal

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

Thank you.