wijmo.editor.wijeditor Namespace > options type : showFooter Option |
Default value: true
Specify whether to show the footer at the bottom of the editor, where users can toggle full screen mode, word wrap, and view mode.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: boolean returnsValue = $(".selector").wijeditor("option", "showFooter"); // Set value var newValue; // Type: boolean $(".selector").wijeditor("option", "showFooter", newValue); }); |
Javascript (Specification) | |
---|---|
var showFooter : boolean; |