Skip to main content

Sticky

In the title parameter, add isSticky: true to the field that needs to be sticky to achieve the sticky effect.

import AcroolTable from '@acrool/react-table';

export interface IPaginateData {
id: number,
name: string,
role: string,
}

const StickyHeader = () => {

const data: IPaginateData[] = [
{id: 1, name: 'Jack Wu', role: 'Admin'},
{id: 2, name: 'Imagine Chiu', role: 'Guest'},
{id: 3, name: 'Jason Dinwiddie', role: 'Manage'},
{id: 4, name: 'Gloria Lu', role: 'Guest'},
];

return <MyTable
title={{
name: {text: 'Name', col: 'auto', isSticky: true},
role: {text: 'Role', col: '120px'},
}}
data={data.map(row => {
return {
id: row.id,
field: {
name: row.name,
role: row.role,
},
};
})}
/>
}

#
Name
Amount
Role
Crated
Joined
Jack Wu$ 200Admin12/14Y
Imagine Chiu$ 99Guest12/15Y
Jason Dinwiddie$ 880Manage12/12N
Gloria Lu$ 12,300Guest12/11Y
Adam Bolton$ 2,500Guest12/12N
Loading...
Show 1 - 0 itemTotal 0 item / 1 Page