2010-02-08 13 views

Respuesta

98

Utilice la opción resizable

var elem = $("#mydiv"); 
elem.dialog({ 
    modal: true, 
    resizable: false, 
    title: 'title', 
    buttons: { 
     Ok: function() { 
      $(this).dialog('close'); 
     } //end function for Ok button 
    }//end buttons 
});  // end dialog 
elem.dialog('open'); 
6

O simplemente:

$('#mydiv').dialog({resizable: false}); 
Cuestiones relacionadas