Skip to content
+

Data Grid - Copy and paste

Copy and paste data using clipboard.

Clipboard copy

You can copy selected grid data to the clipboard using the Ctrl+C (⌘ Command+C on macOS) keyboard shortcut. The copied cell values are separated by a tab (\t) character and the rows are separated by a new line (\n) character.

The priority of the data copied to the clipboard is the following, from highest to lowest:

  1. If more than one cell is selected (see Cell selection), the selected cells are copied
  2. If one or more rows are selected (see Row selection), the selected rows are copied
  3. If there is a single cell selected, the single cell is copied
Commodity
Trader Name
Trader Email
Quantity
Filled Quantity
Is Filled
Status
Cocoa
Matthew Nguyen
45,191
80.279 %
no
Rejected
Soybean Oil
Belle Houston
1,742
15.959 %
no
Filled
Soybean Oil
Clifford Hanson
75,594
47.45 %
no
Open
Soybean Meal
Roy Holland
30,841
82.069 %
no
Open
Soybean Oil
Lucile Watkins
13,685
31.977 %
no
Rejected
Robusta coffee
Jessie Fitzgerald
7,862
34.419 %
no
Rejected
Milk
Nancy Hubbard
13,943
15.413 %
no
Rejected
Corn
Harry Cannon
88,709
8.78 %
no
Filled
Coffee C
Lelia Miles
65,225
40.721 %
no
Partially Filled
Total Rows: 10

Clipboard paste

You can paste data from clipboard using the Ctrl+V (⌘ Command+V on macOS) keyboard shortcut. The paste operation only affects cells in the columns that are editable.

Same as with editing, you can use valueParser to modify the pasted value and valueSetter to update the row with new values. See Value parser and value setter section of the editing documentation for more details.

The behavior of the clipboard paste operation depends on the selection state of the data grid and the data pasted from clipboard. The priority is the following, from highest to lowest:

  1. If multiple cells are selected (see Cell selection), the selected cells are updated with the pasted values.
  2. If one or more rows are selected (see Row selection), the selected rows are updated with the pasted values.
  3. If a single cell is selected, the values are pasted starting from the selected cell.
Commodity
Trader Name
Trader Email
Quantity
Filled Quantity
Is Filled
Status
Soybeans
Frank Gardner
28,079
55.07 %
no
Open
Cotton No.2
Ida Reynolds
51,590
1.13 %
no
Filled
Oats
Lena Bailey
6,149
42.413 %
no
Partially Filled
Sugar No.11
Ora Andrews
28,788
83.208 %
no
Rejected
Sugar No.11
Clifford Carroll
58,157
16.18 %
no
Rejected
Robusta coffee
Noah Osborne
19,377
98.782 %
no
Partially Filled
Cotton No.2
Jean Benson
20,972
30.908 %
no
Filled
Adzuki bean
Jerry Cox
87,630
4.91 %
no
Rejected
Cocoa
Evelyn Schwartz
84,690
73.44 %
no
Filled
Soybeans
Louisa Miller
97,053
15.58 %
no
Rejected
Rough Rice
Cole Marshall
48,343
57.069 %
no
Filled
Total Rows: 100
Press Enter to start editing

Disable clipboard paste

To disable clipboard paste, set the disableClipboardPaste prop to true:

Desk
Commodity
Trader Name
Trader Email
Quantity
No rows
Press Enter to start editing

Persisting pasted data

Clipboard paste uses the same API for persistence as Editing—use the processRowUpdate prop to persist the updated row in your data source:

processRowUpdate?: (newRow: R, oldRow: R) => Promise<R> | R;

The row will be updated with a value returned by the processRowUpdate callback. If the callback throws or returns a rejected promise, the row will not be updated.

The demo below shows how to persist the pasted data in the browser's sessionStorage.

Commodity
Trader Name
Trader Email
Quantity
Filled Quantity
Frozen Concentrated Orange Juice
Jeffrey Nichols
22,542
60.279 %
Oats
Henrietta Gill
39,244
51.399 %
Cocoa
Harriet Peters
81,111
24.879 %
Wheat
Polly Sims
91,665
72.21 %
Sugar No.14
Jim Pratt
98,763
91.77 %
Frozen Concentrated Orange Juice
Erik Kelley
8,524
51.936 %
Adzuki bean
Victor Howell
60,806
92.44 %
Soybeans
Ethan Clark
48,391
79.821 %
Corn
Katie Long
51,252
8.55 %
Total Rows: 20

Events

The following events are fired during the clipboard paste operation:

  • clipboardPasteStart - fired when the clipboard paste operation starts
  • clipboardPasteEnd - fired when all row updates from clipboard paste have been processed

For convenience, you can also listen to these events using their respective props:

  • onClipboardPasteStart
  • onClipboardPasteEnd

The demo below shows how to use these events to display a loading indicator while the clipboard paste operation is in progress:

Commodity
Trader Name
Trader Email
Quantity
No rows
Press Enter to start editing

Format of the clipboard data

By default, the clipboard copy and paste operations use the following format:

  • The cell values are separated by a tab (\t) character.
  • The rows are separated by a new line (\n) character.

You can use clipboardCopyCellDelimiter and unstable_splitClipboardPastedText props to change the format:

<DataGridPremium
  {...otherProps}
  // support comma separated values
  clipboardCopyCellDelimiter={','}
  unstable_splitClipboardPastedText={(text) =>
    text.split('\n').map((row) => row.split(','))
  }
/>

The demo below uses , (comma) character as a cell delimiter for both copy and paste operations:

Commodity
Trader Name
Trader Email
Quantity
Filled Quantity
Is Filled
Status
Unit Price
No rows
Press Enter to start editing