#4826 closed bug (fixed)
Setting resizable false toggles resizable on dialog
Reported by: | Mikko Rantanen | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.dialog | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
e.dialog('option', 'resizable', false); does not disable the resizing but toggles it instead.
The call is delegated from _setData to _makeResizable which expects the argument as a string that describes the resize handles. Since 'false' is not a string it will be replaced with the default string 'n,e,s,w,se,sw,ne,nw'. Probably the delegated call should be made only when _setData value evaluates to true.
This can be worked around by first checking e.dialog('option', 'resizable') and calling it with false only if the return value is true.
Attachments (1)
Change History (3)
Changed 13 years ago by
Attachment: | 4826_dialog_option_resizable_false.patch added |
---|
Note: See
TracTickets for help on using
tickets.
fixes #4826 - dialog reziable on toggle when resizable option set to false