FilterDialogAfterOpenEvent

Represents the event triggered after the Excel filter dialog opens in the Data Grid component. Provides comprehensive details about the opened filter dialog and its current state. Used to perform post-open customization, track user interactions, or apply additional logic after the Excel filter dialog is displayed.

Props

The following table outlines the props for the FilterDialogAfterOpenEvent:

NameTypeDefaultDescription
action
string | ActionType
-

Indicates the type of action that resulted in the filter dialog being opened. Represents the completed action of displaying the Excel filter dialog. Helps in tracking and logging filter dialog interactions.

cancel
boolean
false

Reserved for future use to allow closing the dialog programmatically. When set to true, could trigger the Excel filter dialog to close after opening. Currently not applicable for after-open events but maintained for API consistency.

columnName
string
-

Specifies the name of the column for which the Excel filter dialog has been opened. Identifies the field in the data source associated with the currently displayed filter dialog. Used to track which column is actively being filtered.

columnType
string
-

Specifies the data type of the column being filtered (e.g., 'string', 'number', 'date', 'boolean'). Indicates which type-specific filter options are available in the opened Excel filter dialog. Used for type-aware customization or additional processing after dialog opens.

options
ExcelFilterArgs
-

Provides the current configuration and state of the Excel filter dialog. Contains information such as available filter values, selected items, search query, and dialog UI settings that are now active. Used to inspect or further customize the Excel filter dialog after it has opened.