views:

428

answers:

2

The panel which my modal popup extender "shows" has an update panel within it, to handle valiation.

However, after postback, the close button doesn't seem to work. It just closes the panel butit leaves the modalBackground [greyed out].

<ajaxToolkit:ModalPopupExtender 
                        ID="ActivateModalDefault" 
                        runat="server" 
                        TargetControlID="btnRegister"
                        PopupControlID="pnlShowModal"
                        CancelControlID="CancelLinkButtonDefaultPage" 
                        BackgroundCssClass="modalBackground"> 
            </ajaxToolkit:ModalPopupExtender>

Any ideas on why this would be happening?

A: 

Doesn't sound like normal behavior if it's been implemented correctly. Do you have more to add to this snippet?

Shaunny
You are correct sir. The issue was, the CancelLinkButton was wired up in jQuery as well, thus causing the very very strange behavior
Jack Marchetti
A: 

The issue was, the CancelLinkButton was wired up in jQuery as well, thus causing the very very strange behavior

Jack Marchetti