wijmo.editor.wijeditor Namespace > options type : simpleModeCommands Option |
Default value: null
Specify an array of commands to display in customizing the simple toolbar.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: object returnsValue = $(".selector").wijeditor("option", "simpleModeCommands"); // Set value var newValue; // Type: object $(".selector").wijeditor("option", "simpleModeCommands", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#wijeditor").wijeditor({ mode: "simple", simpleModeCommands: ["Bold","Undo"] });