Wijmo UI for the Web
resizable Option
wijmo.dialog.wijdialog Namespace > options type : resizable Option

Default value: true

The resizable option allows you to control whether your users can resize the dialog. To block users from resizing the dialog, set this option to "false." When true, the resize handle is at the bottom right corner of the dialog.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijdialog("option", "resizable");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijdialog("option", "resizable", newValue);
        
});
var resizable : boolean;
Example
$("selector").wijdialog({resizable: false});
See Also

Reference

options type
wijdialog jQuery Widget