How to hide toolbar in web-reports

2017-03-16

By default, web - reports have the toolbar above them in case to control the report display:

 

In the object properties of “WebReport” you can control this toolbar, add and remove elements, change the layout and style.

 

For example, to display the toolbar at the bottom of the report window, use the “ShowBottomToolbar” property.

If you want to hide the toolbar use the “ShowToolbar” property. You can also remove the rest of the elements of control: buttons of moving through the report pages, export and printing.

There are two panel styles (ToolbarStyle) - Large and Small. It is also possible to choose from five sets of icons. And, of course, you can choose any color for the toolbar background.

For  example  :

 

If you do not like the standard panel, you can make your own one.

Let us place the component “Panel” under “WebReport1”. Add a button to the panel:


Сall the button “Show / Hide toolbar”. Double-click the button. The button will hide or show the toolbar, so the click event code will be following:

1
WebReport1.ShowToolbar = false;

 The result of the button clicking:

 

Now add other buttons that will have some functions of the toolbar buttons:

 

For the button “Prev.” add the code:

1
WebReport1.PrevPage();

For the button “Next” - similarly:

1
WebReport1.NextPage();

And for export to PDF:

1
WebReport1.ExportPdf();

Check the added buttons.

Report pages are switched:

 

By clicking on “ExportPDF” the save file dialog box appears.

The article provides support for creating a custom toolbar similar to the existing one. The toolbar will not be attached to the window of the report and it can be designed according to your taste.

.NET FastReport ASP.NET WebReport Designer Customization .NET FastReport ASP.NET WebReport Designer Customization
13 de outubro de 2025

Novas funcionalidades de exportação de imagens para o Microsoft Word no FastReport .NET

Na versão mais recente do FastReport .NET, adicionamos novos recursos de exportação de imagens. Agora você pode ajustar de forma independente o equilíbrio entre a qualidade e o tamanho do documento final.
30 de setembro de 2025

Como instalar o designer de relatórios FastReport .NET com plugins pré-instalados

Leia o artigo a partir da versão 2025.2.5 para FastReport .NET WinForms e FastReport .NET WEB permite instalar um designer de relatórios com todos os plugins sem construir arquivos dll.
21 de abril de 2025

How RFID Tags Work in FastReport VCL

In this article, we'll check out how RFID tags work with the new TfrxDeviceCommand object in FastReport VCL with release 2025.2.

© 1998-2025 Fast Reports Inc.