IDs for the button bar in the Search view panels

IDs for the button bar in the Search view panels are listed in the Processing [panels] PanelManager() section of the log and contain the SearchGuiMiniBar string.

For example:
Processing [panels] PanelManager()
 com.ixiasoft.dita.eclipse.gui.views.sidebar.SearchGuiMiniBarCycles ..................:
 com.ixiasoft.dita.eclipse.gui.views.sidebar.search.composite.SearchCycleSection ......: 
 com.ixiasoft.dita.eclipse.gui.views.sidebar.SearchGuiMiniBarFilters .................: 
 com.ixiasoft.dita.eclipse.gui.views.sidebar.search.composite.SearchDocumentTypeSection .: 

To remove the button bar from a panel in the Search view, enter its ID in a <removeditem> element and specify its type as org.eclipse.swt.widgets.Button.

For example, to remove the button bar from the Cycles panel, enter the following code in the eclipseui.xml file as follows:
<section id="com.ixiasoft.dita.eclipse.gui.views.sidebar.SearchGuiMiniBar">
   <removeditem id="com.ixiasoft.dita.eclipse.gui.views.sidebar.SearchGuiMiniBarCycles" 
                 type="org.eclipse.swt.widgets.Button"/>
   ...