7.6.2.70. VirtualizedTable
Deprecated: Use PatternFly’s Data view instead. A component for making virtualized tables.
Example
const MachineList: React.FC<MachineListProps> = (props) => {
return (
<VirtualizedTable<MachineKind>
{...props}
aria-label='Machines'
columns={getMachineColumns}
Row={getMachineTableRow}
/>
);
}
| Parameter Name | Description |
|---|---|
|
| data for table |
|
| flag indicating data is loaded |
|
| error object if issue loading data |
|
| column setup |
|
| row setup |
|
| original data without filter |
|
| (optional) no data empty message component |
|
| (optional) empty message component |
|
| (optional) function to handle scroll |
|
| (optional) label for table |
|
| (optional) aria label |
|
| sizing of how to break up grid for responsiveness |
|
| (optional) function for handling select of table |
|
| (optional) data specific to row |