-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Description
When i destroy the dialog and reopen it, the extended buttons are not present. Check out the next code:
<button id="open">Open</button>
<div id="window"></div>
<script>
$('#open').click(function(){
$("#window").dialog({
resizable: false,
width: 340,
maxHeight: '600px',
open: function() {
$.get('http://google.com', '', function(response) {
$('#window').html(response);
}, 'html');
},
close: function() {
$(this).dialog("destroy");
}
}).dialogExtend({collapsable: true});
});</script>
The collapse button appears only at the first dialog open.
Using jqeury 2.1.3, jquery ui 1.11.4
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels