up vote 17 down vote favorite
3
share [g+] share [fb]

I have a Button inside an UpdatePanel. The button is being used as the OK button for a ModalPopupExtender. For some reason, the button click event is not firing. Any ideas? Am I missing something?

<asp:updatepanel id="UpdatePanel1" runat="server">
	<ContentTemplate>
        <cc1:ModalPopupExtender ID="ModalDialog" runat="server" 
            TargetControlID="OpenDialogLinkButton"
			PopupControlID="ModalDialogPanel" OkControlID="ModalOKButton"
			BackgroundCssClass="ModalBackground">
		</cc1:ModalPopupExtender>
		<asp:Panel ID="ModalDialogPanel" CssClass="ModalPopup" runat="server">
			...
			<asp:Button ID="ModalOKButton" runat="server" Text="OK" 
                        onclick="ModalOKButton_Click" />
		</asp:Panel>
	</ContentTemplate>
</asp:updatepanel>
link|improve this question

feedback

protected by Will Jan 28 '11 at 21:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

8 Answers

up vote 13 down vote accepted

Aspx

<ajax:ModalPopupExtender runat="server" ID="modalPop" 
            PopupControlID="pnlpopup" 
            TargetControlID="btnGo"
              BackgroundCssClass="modalBackground"
             DropShadow="true"
             CancelControlID="btnCancel" X="470" Y="300"   />


//Codebehind    
protected void OkButton_Clicked(object sender, EventArgs e)
    {

        modalPop.Hide();
        //Do something in codebehind
    }

And don't set the OK button as OkControlID.

link|improve this answer
1  
Your's is the correct answer. – aceinthehole Aug 17 '10 at 18:36
feedback

It appears that a button that is used as the OK or CANCEL button for a ModalPopupExtender cannot have a click event. I tested this out by removing the

OkControlID="ModalOKButton"

from the ModalPopupExtender tag, and the button click fires. I'll need to figure out another way to send the data to the server.

link|improve this answer
feedback

It could also be that the button needs to have CausesValidation="false". That worked for me.

link|improve this answer
OMG, that worked. My problem had nothing to do with the OK button, but the regular old button click wasn't submitting. – DOK Apr 27 '11 at 18:54
So how about when CausesValidation needs to be "true"? Setting it to "false" does solve one problem but it causes another... – Seventh Element Sep 9 '11 at 14:43
feedback

You should take a look at Matt Berseth's site. He has a heap of stuff on the ModalPopupExtender and just the kinda thing you're trying to do:

ModalPopupExtender articles:

http://mattberseth.com/blog/modalpopupextender/

Each article has a worked example with source code.

link|improve this answer
1  
Good resource but doesn't answer the question. – John Nolan Jan 28 '09 at 11:18
Eh? It clearly did because the OP marked it as the answer. – Kev Jan 28 '09 at 12:37
Also I had exactly the same issue as OP and Berseth's techniques are the HOW-TO/pattern for this kinda behaviour using the modal popup extender. So please can I have my points back? – Kev Jan 28 '09 at 14:33
feedback

I was just searching for a solution for this :)

it appears that you can't have OkControlID assign to a control if you want to that control fires an event, just removing this property I got everything working again.

my code (working):

<asp:Panel ID="pnlResetPanelsView" CssClass="modalPopup" runat="server" Style="display:none;">
    <h2>
        Warning</h2>
    <p>
        Do you really want to reset the panels to the default view?</p>
    <div style="text-align: center;">
        <asp:Button ID="btnResetPanelsViewOK" Width="60" runat="server" Text="Yes" 
            CssClass="buttonSuperOfficeLayout" OnClick="btnResetPanelsViewOK_Click" />&nbsp;
        <asp:Button ID="btnResetPanelsViewCancel" Width="60" runat="server" Text="No" CssClass="buttonSuperOfficeLayout" />
    </div>
</asp:Panel>
<ajax:ModalPopupExtender ID="mpeResetPanelsView" runat="server" TargetControlID="btnResetView"
    PopupControlID="pnlResetPanelsView" BackgroundCssClass="modalBackground" DropShadow="true"
    CancelControlID="btnResetPanelsViewCancel" />
link|improve this answer
feedback

I often use a blank label as the TargetControlID. ex. <asp:Label ID="lblghost" runat="server" Text="" />

I've seen two things that cause the click event not fire:
1. you have to remove the OKControlID (as others have mentioned)
2. If you are using field validators you should add CausesValidation="false" on the button.

Both scenarios behaved the same way for me.

link|improve this answer
feedback

Put into the Button-Control the Attribute "UseSubmitBehavior=false".

link|improve this answer
feedback

None of the previous answers worked for me. I called the postback of the button on the OnOkScript event.

<div>
    <cc1:ModalPopupExtender PopupControlID="Panel1" 
         ID="ModalPopupExtender1"
         runat="server" TargetControlID="LinkButton1" OkControlID="Ok" 
         OnOkScript="__doPostBack('Ok','')">
    </cc1:ModalPopupExtender>

    <asp:LinkButton ID="LinkButton1" runat="server">LinkButton</asp:LinkButton> 
</div>        


<asp:Panel ID="Panel1" runat="server">
    <asp:Button ID="Ok" runat="server" Text="Ok" onclick="Ok_Click" />            
</asp:Panel>
link|improve this answer
If you remove OKControlID from your ModalPopupExtender, the button will postback like normal. In your event, you can call ModalPopupExtender.Hide() to hide the popup. – Kyle Trauberman Jan 28 '09 at 19:37
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.