I want to show up an ASPxPopupControl whenever an user click a button. But there’s a problem with this. The button belongs to a panel, which is hidden by default. It’s only shown when user tells it to do so.
If the panel is initially visible, the popup control shows just fine. But if it’s initially invisible (set by attribute Visible="false"), then when even the panel shows up, the popup control never appears!
How can I fix this? I know that I should ask this question in Devexpress forums, but it never hurts if I try here, right?
Thank you!
Are you using the
ASPxPanelcontrol? If so, try to use the panel’sClientVisibleproperty instead ofVisible. Does this help?UPDATE
I would suggest that you start using the
ASPxPanelinstead and use itsClientVisibleproperty. If you want to use the standardPanel, you should hide it using thestyle.visibilityproperty:C#: