Member Junction
    Preparing search index...

    Configuration for the grid toolbar

    interface GridToolbarConfig {
        customButtons?: GridToolbarButton[];
        exportFormats?: ("csv" | "excel" | "json")[];
        position?: "both" | "top" | "bottom";
        searchDebounce?: number;
        searchPlaceholder?: string;
        showAdd?: boolean;
        showColumnChooser?: boolean;
        showDelete?: boolean;
        showExport?: boolean;
        showFilterToggle?: boolean;
        showRefresh?: boolean;
        showRowCount?: boolean;
        showSearch?: boolean;
        showSelectionCount?: boolean;
    }
    Index

    Properties

    customButtons?: GridToolbarButton[]

    Custom toolbar buttons

    exportFormats?: ("csv" | "excel" | "json")[]

    Export formats available

    position?: "both" | "top" | "bottom"

    Toolbar position

    searchDebounce?: number

    Search debounce time in ms

    searchPlaceholder?: string

    Search placeholder text

    showAdd?: boolean

    Show add button

    showColumnChooser?: boolean

    Show column chooser button

    showDelete?: boolean

    Show delete button (for selected rows)

    showExport?: boolean

    Show export button

    showFilterToggle?: boolean

    Show filter toggle button

    showRefresh?: boolean

    Show refresh button

    showRowCount?: boolean

    Show row count

    showSearch?: boolean

    Show search input

    showSelectionCount?: boolean

    Show selection count