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
3521
RefreshComplete Not Firing
posted

I have a textbox inside a WARP Panel.  When the value changes in the text box, I need to perform some validation against the server for that value.  So, I have the onblur event of the textbox wired-up to event FireUpdatePanel and I have event handlers for RefreshRequest and RefreshComplete.  The RefreshRequest fires but the RefreshComplete does not.  I want to disable some controls in the middle of those requests.  Because the RefreshComplete is never being fired, the controls are never being reenabled.  Any suggestions?

function FireUpdatePanel() {

                var panelProj = ig_getWebControlById("WebAsyncRefreshPanel1");

 

              if (!panelProj) {                 return false;

             }

          else {

                panelProj.refresh();

             }

}

Parents
No Data
Reply
  • 3521
    posted

    Nevermind.  I figured out what the problem was.  When you use the designer to generate the RefreshComplete method, it only supplies one parameter.  The RefreshComplete event apparently uses three parameters, so it seems to be a bug in the designer.

Children
No Data