First Here is my info and working Dialog call:
jQuery ver 1.3.1
jQuery UI ver 1.5.3

$("#dialog").dialog({
                        height: 140,
                        modal: true,
                        overlay: {
                            opacity: 0.5,
                            background: "black"
                        },
                        buttons: {
                            "Cancel": function() {
                                $(this).dialog("close");
                            },
                            "Save": function() {
                                saveData();
                            }
                        },
                        resizable: false,
                        closeOnEscape: false,
                        width: 400,
                        draggable: false
                    });

Question:
I have resizable set to false, while I cannot resize the box, the
cursor change at the corner and borders still occur (from default to
se-resize, e-resize, ... etc), and I cannot seem to turn them off
using CSS, any suggestions?


Thank you for your time.

Duane

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