Interface TableHeaderButtonMethodOptions

interface TableHeaderButtonMethodOptions {
    confirm?: boolean;
    errorMessage?: string;
    refresh?: boolean;
    successMessage?: string;
    tooltip?: string;
}

Properties

confirm?: boolean

If true, the user will be asked to confirm the action before execution.

errorMessage?: string

The error message that will be displayed if the action fails.

refresh?: boolean

If true, the table will be refreshed after the action is executed.

successMessage?: string

The success message that will be displayed if the action succeeds.

tooltip?: string

The tooltip of the action button.