Author API Initialization
back
Controls whether the back button is shown on the Widget (Question or Feature) editor view, for example, when editing or creating a Widget.
You would want to use this to hide the back button in the navigation bar in the Widget editor view and the Widget editor - tile view.
Setting the widget_templates.back
and widget_templates.save
initialization options to false
hides the entire toolbar in the Widget editor view.
Note The toolbar in the Widget editor - tile view will be completely removed when the back button is hidden (as the save button is not shown on this view).
Examples
// Hide the back button
var initializationOptions = {
"config": {
"widget_templates": {
"back": false
}
}
};
Values
Attribute path config.widget_templates.back
Default true
Type boolean