Author API Initialization
description
Configuration options for the description.
Values
Attribute path config.item_edit.item.details.description
Type object
Properties
-
edit boolean
Controls whether the description field can be changed.
You would want to use this so that you can prevent authors from editing the Item description.
Default:
true
var initializationOptions = { "config": { "item_edit": { "item": { "details": { "description": { "edit": false } } } } } };
-
show boolean
Controls whether the description field is shown.
You would want to use this to allow authors to add acknowledgements information for Items.
Default:
true
var initializationOptions = { "config": { "item_edit": { "item": { "details": { "description": { "show": false } } } } } };