We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I bind the dialog to a div and maximize it, it will grow up the hole window (this is OK) but if I restore it, it will lost the containment.
.dialog("widget").draggable("option","containment","#frameContent")
The text was updated successfully, but these errors were encountered:
I try to fix it with the restore event, but the dlg parameter is an empty Object. "restore" : function(evt, dlg){ console.log(evt,dlg);
Sorry, something went wrong.
A workaround is: "restore" : function(evt, dlg){ $(evt.target).dialog("widget").draggable("option","containment","#frameContent") };
No branches or pull requests
If I bind the dialog to a div and maximize it, it will grow up the hole window (this is OK) but if I restore it, it will lost the containment.
.dialog("widget").draggable("option","containment","#frameContent")
The text was updated successfully, but these errors were encountered: