Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1070
WebDialogWindow inside of WARP
posted

I have a very simple example that I am trying to make work where I have a WebDialogWindow inside of a WARP. I want to have a button outside of the panel that causes a refresh to bring up the WebDialogWindow. I have now tried the button both inside and outside and neither works. It seems to only work when I use a full postback. Can anyone tell me how to do this? How do I make this work with the button outside of the WARP?

<igmisc:WebAsyncRefreshPanel ID="WebAsyncRefreshPanel1" runat="server">

<asp:Button Text="Show Window" ID="showWindow" runat="server" onclick="showWindow_Click" />

<ig:WebDialogWindow ID="webDialog" runat="server" Height="300px" InitialLocation="Centered" Modal="True" Moveable="False"

StyleSetName="Office2007Blue" Width="400px" WindowState="Normal" Visible="false">

</ig:WebDialogWindow>

</igmisc:WebAsyncRefreshPanel>