mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4889: UI > (1) extend listView widget to support option of hiding/showing search box. (2) Hide search box in UCS Blades tab.
This commit is contained in:
parent
8a0ae4a038
commit
7ef4c7e1a4
|
|
@ -13785,6 +13785,7 @@
|
|||
title: 'Blades',
|
||||
listView: {
|
||||
id: 'blades',
|
||||
hideSearchBar: true,
|
||||
fields: {
|
||||
chassis: {
|
||||
label: 'Chassis'
|
||||
|
|
|
|||
|
|
@ -1580,7 +1580,10 @@
|
|||
detailView: listViewData.detailView
|
||||
});
|
||||
createFilters($toolbar, listViewData.filters);
|
||||
createSearchBar($toolbar, listViewData);
|
||||
|
||||
if (listViewData.hideSearchBar != true) {
|
||||
createSearchBar($toolbar, listViewData);
|
||||
}
|
||||
|
||||
loadBody(
|
||||
$table,
|
||||
|
|
|
|||
Loading…
Reference in New Issue