Hi,

When i use dialog control with "show:slow" option parameter it works
correctly in ie but it doesn't contain anything except buttons in
firefox 3.0.*.

Another problem is that when i use dialog with  position:center
parameter it positioned near the bottom and sometimes you can see only
half of the dialog. it is not steable, probably it depends main
content height. So I have had to change position as a pixel
coordinate.

Is there a way to correct those things ?

I'm using jquery 1.3.1 and rc6 ui.

$('#details').dialog({
        resizable: false,
        autoOpen: false,
        closeOnEscape: true,
        draggable: true,
        //hide: 'slide',
        //show: "slow",
        modal: true,
        position:  [155, 200], //'center',
        width: 380,
        height: 270,
        buttons: {
            "OK": function() {
                     Save();
            },
            "Cancel": function() {
                $(this).dialog("close");
            }
        }
    });

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to