wijmo.dialog.wijdialog Namespace > options type : autoOpen Option |
Default value: true
If set to true, the dialog will automatically open upon initialization. If false, the dialog will stay hidden until the open() method is called.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: boolean returnsValue = $(".selector").wijdialog("option", "autoOpen"); // Set value var newValue; // Type: boolean $(".selector").wijdialog("option", "autoOpen", newValue); }); |
Javascript (Specification) | |
---|---|
var autoOpen : boolean; |