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() {
}
panelProj.refresh();
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.