Articles in this section
Category / Section

How to disable alert dialog box in pivot table when changing the report

2 mins read

This article explains how to disable the alert dialog box in the Angular pivot table

Disable alert dialog box

There may be instances where you have to suppress the alert dialog that pops up when you switch reports or create a new report after modifying the current report. To achieve this, use the dataBound event in your code. The dataBound event triggered when the pivot table is rendered.

Here is a code snippet that guides how you can turn off the alert dialog box:

[app.component.html]

<div class="control-section" id="pivot-table-section">
  <div>
    <ejs-pivotview #pivotview id="PivotView" (databound)="dataBound($event)">
    </ejs-pivotview>
  </div>
</div>

[app.component.ts]

  @ViewChild('pivotview')
  public pivotObj: PivotView;

  dataBound() {
    this.pivotObj.isModified = false;
    this.pivotObj.toolbarModule.action = '';
  }

By using the above dataBound event and setting the isModified property to false, the alert dialog box is effectively turned off. Additionally, the toolbarModule.action property should be set to an empty string to clear any actions that have been set in the toolbar.

For a practical demonstration, refer to the sample of stackblitz.

Conclusion:

I hope you enjoyed learning how to disable the alert dialog box in the Pivot Table when changing the report.

You can refer to our Angular Pivot Table feature tour feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Angular Pivot Table example example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, support portal, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied