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
1035
WebDialogWindow javascript "hide()" not working
posted

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?

Parents
No Data
Reply
  • 24497
    posted

    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" />

Children