IDs used for removal of Search view panel button bar
You can remove the button bar in the Search view by using the related IDs in the trace log.
IDs for the button bar in the Search view panels are listed in the 
		Processing [panels] PanelManager() section of the trace log
			and contain the SearchGuiMiniBar
			string.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"/>
   ...