Skip to content

Commit 4a6de11

Browse files
committed
[update] grid clipboard module guide
1 parent 8cf46e9 commit 4a6de11

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/grid/usage_clipboard.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Data from the clipboard is pasted into the range defined by `rangeSelection`. Th
8686

8787
The repetition of elements follows the order of copying, starting from the first cell.
8888

89-
### Copying cells depending on the column type
89+
### Copying/pasting cells depending on the column type
9090

9191
Below you'll find the details on copying/pasting data depending on the type of a column.
9292

@@ -163,7 +163,7 @@ These functions provide flexible control over how data is processed before copyi
163163

164164
### Examples
165165

166-
**Numbers with a mask**
166+
**Copying numbers with a mask**
167167

168168
This example demonstrates how to copy numbers while preserving the mask (e.g., `"1,234.56"` instead of `1234.56`).
169169

@@ -178,7 +178,7 @@ copyModifier: (value, cell, cut) => {
178178
}
179179
~~~
180180

181-
**Combobox with displayed text**
181+
**Copying the displayed text of the Combobox option**
182182

183183
This example shows how to copy the combobox option text (`"Option 1"`) instead of the `id` (`"1"`).
184184

@@ -193,7 +193,7 @@ copyModifier: (value, cell, cut) => {
193193
}
194194
~~~
195195

196-
**Dates with validation**
196+
**Pasting dates with validation**
197197

198198
This example demonstrates how to transform a date from `"11/04/2025"` to `"2025-04-11"` during pasting and ensure it is valid.
199199

@@ -215,7 +215,7 @@ pasteModifier: (value, cell) => {
215215
}
216216
~~~
217217

218-
**PatternMask during copying**
218+
**Removing `patternMask` during copying**
219219

220220
This example shows how to remove mask formatting (e.g., copy `"1234567890"` instead of `"+1 (234) 567-89-0"`).
221221

0 commit comments

Comments
 (0)