#4724 closed bug (worksforme)
resizable = false not working in dialog plug-in
Reported by: | sudhircn | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | ui.dialog | Version: | 1.7.2 |
Keywords: | dialog, resizable = false | Cc: | |
Blocked by: | Blocking: |
Description (last modified by )
Code: html: <div id="dvLogindialog">
<form>
<div id="dvAgtSplits"></div>
</form>
</div> Javascript ready function: $('#dvLogindialog').dialog({
title: 'Phone-Only Agent Login', bgiframe: true, autoOpen: false, autoResize: false, resizeable: false, draggable: false, closeOnEscape: false, width: 553, height: 200, modal: true, minHeight: 100, minwidth: 553, maxHeight: 100, maxwidth: 553, stack: false, position: 'center', buttons: { Cancel: function() { $(this).dialog('close'); }, 'Login': function() {}}
});
javascript function onclick event is associated to function Loginpopup
function Loginpopup() {
try {
$('#dvAgtSplits').html(html); $("#dvLogindialog").dialog("open"); }
catch (e) {} }
But i am able to resize the popup.
Change History (2)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → worksforme |
Status: | new → closed |
You have a typo. The option is "resizable" not "resizeable".