Class PivotActionFailureEventArgs
When the current UI action fails to achieve the desired result, the action failure event arguments provide necessary information about the current UI action, such as the current action name and failure information which are configured based on the UI actions like drill down/up, value sorting, built-in toolbar options, grouping bar and field list buttons actions such as sorting, filtering, editing, aggregate type change and so on, CRUD operation in editing in the pivot table.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotActionFailureEventArgs : Object
Constructors
PivotActionFailureEventArgs()
Declaration
public PivotActionFailureEventArgs()
Properties
ActionName
Defines name of the current UI action when it begins. The following UI actions and their action names are:
Pivot Table
- Drill down and drill upDrill down/up.
- Value sortingSort value.
Toolbar
- New reportAdd new report.
- Save As reportSave as current report.
- Save reportSave current report.
- Report changeChange current report.
- Remove reportRemove current report.
- Rename reportRename current report.
- Load reportLoad report.
- Show TableShow table view.
- Chart menuShow chart view.
- Export menuPDF/Excel/CSV export.
- Conditional FormattingOpen conditional formatting dialog.
- Number FormattingOpen number formatting dialog.
- MDXOpen MDX dialog.
- Grand totals menuShow/hide grand totals.
- Sub-totals menuShow/hide sub-totals.
- Show FieldlistOpen field list.
Grouping bar and Field List buttons
- EditingEdit calculated field.
- RemoveRemove field.
- SortingSort field.
- FilteringFilter field.
- AggregationAggregate field.
Field List UI
- Field list treeSort field tree.
- Calculated field buttonOpen calculated field dialog.
Editing
- EditEdit record.
- SaveSave edited records.
- AddAdd new record.
- DeleteRemove record.
Pager
- Navigate row pageNavigate row page.
- Navigate column pageNavigate column page.
- Row page size changeRow page size change.
- Column page size changeColumn page size change.
Declaration
public string ActionName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
ErrorInfo
Defines the error information of the current action.
Declaration
public Exception ErrorInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Exception | An instance of Exception class that contains information about the error that occurred during the current action. |