You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17539,6 +17539,9 @@ To target individual cells use \`columnDefinitions.verticalAlign\`, that takes p
17539
17539
The \`cellContext\` object contains the following properties:
17540
17540
* \`cellContext.currentValue\` - State to keep track of a value in input fields while editing.
17541
17541
* \`cellContext.setValue\` - Function to update \`currentValue\`. This should be called when the value in input field changes.
17542
+
* \`cellContext.submitValue\` - Function to submit the \`currentValue\`.
17543
+
* \`editConfig.disableNativeForm\` (boolean) - Disables the use of a \`<form>\` element to capture submissions inside the inline editor.
17544
+
If enabled, ensure that any text inputs in the editing cell submit the cell value when the Enter key is pressed, using \`cellContext.submitValue\`.
17542
17545
* \`isRowHeader\` (boolean) - Specifies that cells in this column should be used as row headers.
17543
17546
* \`hasDynamicContent\` (boolean) - Specifies that cells in this column may have dynamic content. The contents will then be observed to update calculated column widths.
17544
17547
This may have a negative performance impact, so should be used only if necessary. It has no effect if \`resizableColumns\` is set to \`true\`.
* The `cellContext` object contains the following properties:
117
117
* * `cellContext.currentValue` - State to keep track of a value in input fields while editing.
118
118
* * `cellContext.setValue` - Function to update `currentValue`. This should be called when the value in input field changes.
119
+
* * `cellContext.submitValue` - Function to submit the `currentValue`.
120
+
* * `editConfig.disableNativeForm` (boolean) - Disables the use of a `<form>` element to capture submissions inside the inline editor.
121
+
* If enabled, ensure that any text inputs in the editing cell submit the cell value when the Enter key is pressed, using `cellContext.submitValue`.
119
122
* * `isRowHeader` (boolean) - Specifies that cells in this column should be used as row headers.
120
123
* * `hasDynamicContent` (boolean) - Specifies that cells in this column may have dynamic content. The contents will then be observed to update calculated column widths.
121
124
* This may have a negative performance impact, so should be used only if necessary. It has no effect if `resizableColumns` is set to `true`.
0 commit comments