Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Girish 7 posts 37 karma points
    Mar 27, 2013 @ 07:38
    Girish
    0

    How to show the jquery dialog?

    I want to show jquery dialog on the page for forgot password. Can anyone tell me how to create and invoke with the dialog?

     

    Thanks

     

  • Alex Skrypnyk 6182 posts 24284 karma points MVP 8x admin c-trib
    Mar 27, 2013 @ 11:28
    Alex Skrypnyk
    0

    Hi Girisg,

    You could use http://jqueryui.com/dialog/

    Example of usign:

    $('[id$=TermsAndConditionsDescription]').dialog({
                resizable: true,
                height: 600,
                width: 800,
                modal: true,
                title: $('[id$=TermsAndConditionsTitle]').html(),
                buttons: {
                    "Accept": function () {
                        $(this).dialog("close");
    
                        return true;
                    },
                    Cancel: function () {
                        $(this).dialog("close");
    
                        return false;
                    }
                }
            });
    

     

    Thanks

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies