Header & Footer Slots

Description

You can add Header and/or Footer to your grid by using the #header and #footer Slots, it's as simple as that. Using these slots also has the advantage of being contained in the same container making them the same width as the grid container.

Demo

Demo / Demo Component

Basic Usage

Component

<SlickgridReact gridId="grid"
    columnDefinitions={this.columnDefinitions}
    gridOptions={this.gridOptions}
    dataset={this.dataset}
    header={<Header />}
    footer={<Footer />}
/>

Last updated