Author API Initialization
controls
Specifies which search options are shown for authors.
You would want to use this to customize the search interface.
Examples
// Only allow searching by Item reference
var initializationOptions = {
"config": {
"item_list": {
"toolbar": {
"search": {
"controls": ["reference"]
}
}
}
}
};
Values
Attribute path config.item_list.toolbar.search.controls
Default ["reference", "content"]
Type array[string]
Possible values
-
"reference"
This can be specified if
item.title.show
is set tofalse
, or bothitem.title.show_reference
anditem.title.show
are set totrue
. -
"title"
This can be specified if
item.title.show
is set totrue
. "content"