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