Setting the speed is not currently supported. There is a ticket for
this, but Trac is currently down while we're switching servers, so I
can't tell you which ticket it is.
On Sep 23, 4:41 pm, "Greg E." <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> Here's what I have going on:
>
> //create dialog
>
> $("#test").load("loginformtest.asp").dialog({
> draggable: false,
> autoOpen: false,
> height: 430,
> width: 500,
> modal: true,
> position: "top",
> show: "blind",
> //show: {
> //effect: "blind",
> //speed: 1000
> //},
> resizable: false,
> overlay: {
> backgroundColor: '#000',
> opacity: 0.5
> },
> title: "Please Login or Create a New Account."
>
> });
>
> //open dialog box
>
> function displaylogin() {
> //resize login modal to original size, then open
> $(".ui-dialog").height(430);
> $(".ui-dialog").width(500);
> $("#test").dialog("open");
>
> }
>
> Basically a link is clicked which opens the dialog and everything
> works great.
>
> What I can't figure out is how to set the speed of the blind effect
> I'm trying to use to display the dialog. If I uncomment the 'show' and
> its parameters I have commented above, it stops the dialog from
> opening, which I assume is because I'm not using it properly in this
> situation, thus I'm just using show: "blind".
>
> Can anyone point me in the right direction?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---