The ASP.NET AJAX ModalPopupExtender has OnCancelScript and OnOkScript properties, but it doesn't seem to have an OnShowScript property. I'd like to specify a javascript function to run each time the popup is shown.

In past situations, I set the TargetControlID to a dummy control and provide my own control that first does some JS code and then uses the JS methods to show the popup. But in this case, I am showing the popup from both client and server side code.

Anyone know of a way to do this?

link|improve this question

feedback

6 Answers

up vote 10 down vote accepted

hmmm... I'm pretty sure that there's a shown event for the MPE... this is off the top of my head, but I think you can add an event handler to the shown event on page_load

function pageLoad()
{
var popup = $find('ModalPopupClientID');
popup.add_shown(SetFocus);
}

function SetFocus()
{
$get('TriggerClientId').focus();
}

i'm not sure tho if this will help you with calling it from the server side tho

link|improve this answer
add_shown() just saved me a bunch of effort and worked perfectly!! – Chris Porter Apr 5 '11 at 20:03
3  
Awesome! I also had to add Sys.Application.add_load(pageLoad); to my page to get it to fire the pageLoad() – Jorin Oct 25 '11 at 22:20
Just to add to @Jorin: I added my javascript via runtime, and the add_shown would work when a partial postback was done (using an update panel) however, it would NOT when a full postback was done (due to dynamic controls triggering the MPE to be shown). Adding the Sys.Application.add_load(pageLoad); line just before my javascript made it work even on full page postback. – yougotiger Nov 29 '11 at 22:47
feedback

You should use the BehaviorID value ("mpeBID") of your ModalPopupExtender.

function pageLoad() {
    $find('mpeBID').add_shown(HideMediaPlayer);
}

function HideMediaPlayer() {
    var divMovie = $get('<%=divMovie.ClientID%>');
    divMovie.style.display = "none";
}
link|improve this answer
+1 for mentioning the BehaviorID – Jorin Oct 25 '11 at 22:20
feedback

Here's a simple way to do it in markup:

<ajaxToolkit:ModalPopupExtender 
                ID="ModalPopupExtender2" runat="server" 
                TargetControlID="lnk_OpenGame" 
                PopupControlID="Panel1" 
                BehaviorID="SilverPracticeBehaviorID"  >
            <Animations>
                <OnShown>
                     <ScriptAction Script="InitializeGame();" />  
                </OnShown>
            </Animations>                
</ajaxToolkit:ModalPopupExtender>
link|improve this answer
feedback

If you are using a button or hyperlink or something to trigger the popup to show, could you also add an additional handler to the onClick event of the trigger which should still fire the modal popup and run the javascript at the same time?

link|improve this answer
feedback

The ModalPopupExtender modifies the button/hyperlink that you tell it to be the "trigger" element. The onclick script I add triggers before the popup is shown. I want script to fire after the popup is shown.

Also, still leaves me with the problem of when I show the modal from server side.

link|improve this answer
feedback

TinyMCE work on invisible textbox if you hide it with css (display:none;) You make an "onclick" event on TargetControlID, for init TinyMCE, if you use also an updatepanel

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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