Izenda, LLC

Ad Hoc Reports & Dashboards for ASP.NET Apps

Free Trial

Izenda Reports is licensed on a "per user" or "per server" basis. Please complete this form to receive a price quote.

All fields are required.

The live demo demonstrates Izenda reports with the Northwind Sample database. To login, please register below.

All fields are required.

You can download a full time-limited trial version here. Or, email a CSV file to data@izenda.com and our sales team will create several complementary reports on our demo environment.

All fields are required.

How do I remove buttons from the toolbar in the report designer?

Expand / Collapse
 

How do I remove buttons from the toolbar in the report designer?


The toolbar is a collection of items, any of which be removed. Goto the root directory in which Izenda Reports is installed. There will be a file in that directory named "ReportDesigner.aspx.cs". Open this file with a text editor. In your "ReportDesigner.aspx.cs" page, look for this "OnInit" method and place the following code inside.

override protected void OnInit(EventArgs e) 
{
InitializeComponent();
base.OnInit(e);

//remove report list button
queryBuilder.Toolbar.Items.Remove("ReportListButton");

//remove save button
queryBuilder.Toolbar.Items.Remove("SaveButton");

//remove save as button
queryBuilder.Toolbar.Items.Remove("SaveAsButtonButton");
}


Details
Type: FAQ
Options