Is there an event for switching to the PagePanel that parents that object. For example, if you embed a ContainerControl within a pagepanel and you switch to the pagepanel tab with that containercontrol contained, I want to be able to use an event that is triggered by the contained containercontrol of that pagepanel tab.
Is there a built-in event for this? If not, how can I best achieve this?
Events are usually triggered by something that a control does, or has done to it…
In your example, nothing is happening to the container control, so there would be nothing to trigger an event.
The PagePanel on the other hand had at least the valuechanged event occur
[quote=64785:@Dave S]Events are usually triggered by something that a control does, or has done to it…
In your example, nothing is happening to the container control, so there would be nothing to trigger an event.
The PagePanel on the other hand had at least the valuechanged event occur[/quote]
Thanks