Author API Initialization
show
Controls whether Item titles are visible in the Item picker, intro and outro picker views.
You would want to use this to choose whether the Item title or the Item reference is shown to the author in the search results.
Examples
// Show the Item title in the search results
var initializationOptions = {
"config": {
"activity_edit": {
"item_search": {
"title": {
"show": true
}
}
}
}
};
Values
Attribute path config.activity_edit.item_search.title.show
Default false
Type boolean
Possible values
truethe Item title or "Untitled" will be shown.falsethe Item reference will be shown.