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
90
WebDialogWindow With out Postback
posted

Hi, how can i show a WebDialogWindow but the page don't make a Postback, like a show or hide this modal with out  a refresh.

Thanks for any help.

Parents
  • 7499
    Suggested Answer
    posted

    Hello Richardo,

    You can show and hide the dialogwindow without postback on client side like below:

     function Show() {   

     var dialog =$find("WebDialogWindow1");        

         dialog.show();     

        }

    function hide() {    

       var dialog =$find("WebDialogWindow1");     

       dialog.hide();  

       }

    Please let me know if you have any further questions regarding this matter.

Reply Children