WebContainer question

Hello All.

I Have a webpage and One main webcontainer with a weblistbox and another webcontainer with some fields and buttons. When a row is selected, details gets displayed on the second webcontainer. How can I update the selected row from the listbox when a button is pressed on the second Webcontainer.

There’s a few ways you can do this.

You can have create events for the webContainer that you implement on the instance of the webContainer on your webpage.

Otherwise you can use introspection to check the parent and have conditional branches on the button’s events
If me.parent isA WebPageMain then WebPageMain.WebContainerA.Listbox1.(…)

Thanks Brock,

I have figured this out and now it works.