We just upgraded to NetAdvantage 2009 Vol 1 and now none of our WebDialogWindow's are closing when we call hide() from the client. Is there something else we need to do?
I figured out what was going on. My global javascript variable for the current WebDialogWindow was pointing to the wrong one. Oops! :) It works now. Thanks!
That example works for me also. I'm not sure yet what is going on. I will continue trying to create a small reproducible case.
Hi Jonny,
I tested following and it worked correctly. Please attach within Options tab a simple aspx, which can be used to reproduce that issue?
<ig:WebDialogWindow ID="WebDialogWindow1" runat="server"></ig:WebDialogWindow><script type="text/javascript">function hide(){ var dialog = $find('<%=WebDialogWindow1.ClientID%>'); if(dialog) dialog.hide();}</script><input type="button" onclick="hide()" value="Hide" />