Перейти к контенту

🎉 v5 is out! Head to the documentation to get started.

Data Grid - Layout

The data grid offers multiple layout mode.

By default, the grid has no intrinsic dimensions. It occupies the space its parent leaves.

⚠️ When using % (percentage) for your height or width. You need to make sure the container you are putting the grid into also has an intrinsic dimension. The browsers fit the element according to a percentage of the parent dimension. If the parent has no dimensions, then the % will be zero.

Flex layout

It's recommended to use a flex container to render the grid. This allows a flexible layout, resizes well, and works on all devices.

Desk
Commodity
Trader Name
Trader Email
Quantity
D-7801
Coffee C
Eva Rose
27,585
D-4282
Oats
Isabel Mason
12,853
D-8400
Cotton No.2
Grace Blair
25,718
D-5728
Soybean Meal
Hilda Ford
6,655
D-5716
Soybeans
Connor Flores
52,187

Строк на странице:

100

1-5 из 5

<div style={{ display: 'flex', height: '100%' }}>
  <div style={{ flexGrow: 1 }}>
    <DataGrid {...data} />
  </div>
</div>

Predefined dimensions

You can predefine dimensions for the parent of the grid.

Desk
Commodity
Trader Name
Trader Email
Quantity
D-1659
Milk
Norman Fisher
99,314
D-9124
Soybeans
Scott Lewis
32,021
D-8948
Adzuki bean
Jeffrey Mason
13,815
D-26
Soybean Meal
Adrian Ortega
55,112
D-4594
Corn
Hattie Little
74,575

Строк на странице:

100

1-5 из 5

<div style={{ height: 350, width: '100%' }}>
  <DataGrid {...data} />
</div>

Auto height

The autoHeight prop allows the grid to size according to its content. This means that the number of rows will drive the height of the grid and consequently, they will all be rendered and visible to the user at the same time.

⚠️ This is not recommended for large datasets as row virtualization will not be able to improve performance by limiting the number of elements rendered in the DOM.

Desk
Commodity
Trader Name
Trader Email
Quantity
D-9316
Soybean Meal
Troy Cross
8,379
D-2408
Cocoa
Beulah Moody
62,281
D-2329
Robusta coffee
Victoria Richardson
75,309
D-6283
Frozen Concentrated Orange Juice
Manuel Page
24,218

Строк на странице:

100

1-4 из 4

more content

<DataGrid autoHeight {...data} />
<p>more content</p>