Wijmo UI for the Web
fullScreenMode Option
wijmo.editor.wijeditor Namespace > options type : fullScreenMode Option

Default value: false

Set this option to true to show the editor in full screen mode when the page is first opened.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijeditor("option", "fullScreenMode");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijeditor("option", "fullScreenMode", newValue);
        
});
var fullScreenMode : boolean;
Remarks
The editor fills the client area of the page(or the container specified in the fullScreenContainerSelector option). Note that this only sets the initial mode.The user can still toggle fullScreenMode off using the button at the bottom right of the editor.
See Also

Reference

options type
wijeditor jQuery Widget