Author API Initialization
show_reference
Controls whether Item references are visible in the Item list view.
You would want to use this to hide the Item references and only show the Item titles instead.
When enabled together with the title.show
initialization option set to true
, the Item references will be shown in addition to the Item titles.
Examples
// Hide the Item references and show Item titles
var initializationOptions = {
"config": {
"item_list": {
"item": {
"title": {
"show": true,
"show_reference": false
}
}
}
}
};
Values
Attribute path config.item_list.item.title.show_reference
Default true
Type boolean