VLWeb Popup Issues
Posted: Wed Jan 10, 2018 9:43 am
Having all kinds of problems with VLWeb's Popup control.
The first issue is that it looks like the z-index is missing or hosed up. If I add/modify the z-index in Chrome, then it renders fine.
Secondly, the popup is not centered, even though I use
For that matter, what does the Context parameter for? The docs have:
I've ensured everything is compiled, multiple hard refreshes and nothing is working.
The UI is a rather complicated UI with multiple levels of Reusable Parts, does that have anything to do with it?
The first issue is that it looks like the z-index is missing or hosed up. If I add/modify the z-index in Chrome, then it renders fine.
Secondly, the popup is not centered, even though I use
Code: Select all
#Popup.ShowPopup context(#COM_OWNER) placement(Center)
There is also a shroud style on the popup that is not getting applied.Reference to the control to which the popup applies
Code: Select all
define_com class(#PRIM_VS.Style) name(#ShroudStyle) backgroundbrush(#ShroudBrush)
define_com class(#PRIM_VS.SolidBrush) name(#ShroudBrush) color(28:28:28) opacity(30)
Code: Select all
define_com class(#PRIM_PPNL) name(#Popup) left(450) parent(#COM_OWNER) titlebar(True) top(212) caption('Submiting Request ....') height(249) width(300) layoutmanager(#PopupLayout) autoclose(False) shroudstyle(#ShroudStyle) enablechildren(True)
The UI is a rather complicated UI with multiple levels of Reusable Parts, does that have anything to do with it?