Hi folks. I’m having a problem in my web app where there is a listbox in container 1, and then when a toolbar button is clicked, a second container is dynamically loaded using embedwithin. Trouble is, the listbox stays on top (but not the headers ??) and hides that section of container 2.
Same result if I load container 2 into WebPage1 instead of container 1. I’ve also tried dragging an instance of container 2 into WebPage1, but then nothing shows up at all when I run the app.
I’m posting a small (labeled) screenshot to help clarify the issue. Let me know if one without the text and/or bigger shot would be more helpful.
Here’s my code, in a toolbar.pressed event
(phonecont is container 1, clientscont is container 2)
Var clbox As New clientscont
clbox.EmbedWithin(self, 10, 71, clbox.Width+5, 750)
SWEEEET! I knew z-index had to be the problem, just had no idea how to fix it.
I can’t thank you enough for this!!! I won’t mark this thread solved just yet, in case Ricardo comes up with something as well, but I’m perfectly happy with your solution.