handsontable 0.0.0-next-8e49c6c-20240307 → 0.0.0-next-221e46b-20240307
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/3rdparty/walkontable/src/cell/range.js +1 -1
- package/3rdparty/walkontable/src/cell/range.mjs +1 -1
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +21 -21
- package/core.mjs +21 -21
- package/dataMap/metaManager/metaSchema.js +270 -270
- package/dataMap/metaManager/metaSchema.mjs +270 -270
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +397 -397
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +3 -3
- package/dist/handsontable.js +397 -397
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/pluginHooks.js +43 -43
- package/pluginHooks.mjs +43 -43
- package/plugins/columnSummary/columnSummary.js +14 -14
- package/plugins/columnSummary/columnSummary.mjs +14 -14
- package/plugins/contextMenu/contextMenu.js +3 -3
- package/plugins/contextMenu/contextMenu.mjs +3 -3
- package/plugins/copyPaste/copyPaste.js +3 -3
- package/plugins/copyPaste/copyPaste.mjs +3 -3
- package/plugins/customBorders/customBorders.js +1 -1
- package/plugins/customBorders/customBorders.mjs +1 -1
- package/plugins/dropdownMenu/dropdownMenu.js +2 -2
- package/plugins/dropdownMenu/dropdownMenu.mjs +2 -2
- package/plugins/exportFile/exportFile.js +1 -1
- package/plugins/exportFile/exportFile.mjs +1 -1
- package/plugins/filters/filters.js +1 -1
- package/plugins/filters/filters.mjs +1 -1
- package/plugins/formulas/formulas.js +1 -1
- package/plugins/formulas/formulas.mjs +1 -1
- package/plugins/hiddenColumns/hiddenColumns.js +4 -4
- package/plugins/hiddenColumns/hiddenColumns.mjs +4 -4
- package/plugins/hiddenRows/hiddenRows.js +4 -4
- package/plugins/hiddenRows/hiddenRows.mjs +4 -4
- package/plugins/manualColumnMove/manualColumnMove.js +7 -7
- package/plugins/manualColumnMove/manualColumnMove.mjs +7 -7
- package/plugins/manualRowMove/manualRowMove.js +7 -7
- package/plugins/manualRowMove/manualRowMove.mjs +7 -7
- package/plugins/nestedRows/nestedRows.js +2 -2
- package/plugins/nestedRows/nestedRows.mjs +2 -2
- package/plugins/nestedRows/utils/rowMoveController.js +4 -4
- package/plugins/nestedRows/utils/rowMoveController.mjs +4 -4
- package/shortcuts/context.js +1 -1
- package/shortcuts/context.mjs +1 -1
- package/shortcuts/manager.js +2 -2
- package/shortcuts/manager.mjs +2 -2
package/pluginHooks.mjs
CHANGED
@@ -20,7 +20,7 @@ import { fastCall } from "./helpers/function.mjs";
|
|
20
20
|
* ::: only-for react
|
21
21
|
* This page lists all the **Handsontable hooks** – callbacks that let you react before or after an action occurs.
|
22
22
|
*
|
23
|
-
* Read more on the [Events and hooks](@/guides/getting-started/events-and-hooks.md) page.
|
23
|
+
* Read more on the [Events and hooks](@/guides/getting-started/events-and-hooks/events-and-hooks.md) page.
|
24
24
|
* :::
|
25
25
|
*
|
26
26
|
* @example
|
@@ -136,7 +136,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
136
136
|
*
|
137
137
|
* @event Hooks#afterChange
|
138
138
|
* @param {Array[]} changes 2D array containing information about each of the edited cells `[[row, prop, oldVal, newVal], ...]`. `row` is a visual row index.
|
139
|
-
* @param {string} [source] String that identifies source of hook call ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
139
|
+
* @param {string} [source] String that identifies source of hook call ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
140
140
|
* @example
|
141
141
|
* ::: only-for javascript
|
142
142
|
* ```js
|
@@ -240,7 +240,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
240
240
|
* @param {number} index Represents the visual index of first newly created column in the data source array.
|
241
241
|
* @param {number} amount Number of newly created columns in the data source array.
|
242
242
|
* @param {string} [source] String that identifies source of hook call
|
243
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
243
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
244
244
|
* @returns {*} If `false` then creating columns is cancelled.
|
245
245
|
* @example
|
246
246
|
* ::: only-for javascript
|
@@ -281,7 +281,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
281
281
|
* @param {number} index Represents the visual index of first newly created column in the data source.
|
282
282
|
* @param {number} amount Number of newly created columns in the data source.
|
283
283
|
* @param {string} [source] String that identifies source of hook call
|
284
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
284
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
285
285
|
*/
|
286
286
|
'afterCreateCol',
|
287
287
|
/**
|
@@ -291,7 +291,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
291
291
|
* @param {number} index Represents the visual index of first newly created row in the data source array.
|
292
292
|
* @param {number} amount Number of newly created rows in the data source array.
|
293
293
|
* @param {string} [source] String that identifies source of hook call
|
294
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
294
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
295
295
|
* @returns {*|boolean} If false is returned the action is canceled.
|
296
296
|
*/
|
297
297
|
'beforeCreateRow',
|
@@ -302,7 +302,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
302
302
|
* @param {number} index Represents the visual index of first newly created row in the data source array.
|
303
303
|
* @param {number} amount Number of newly created rows in the data source array.
|
304
304
|
* @param {string} [source] String that identifies source of hook call
|
305
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
305
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
306
306
|
*/
|
307
307
|
'afterCreateRow',
|
308
308
|
/**
|
@@ -385,11 +385,11 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
385
385
|
* or the [`updateSettings()`](@/api/core.md#updatesettings) method.
|
386
386
|
*
|
387
387
|
* Read more:
|
388
|
-
* - [Binding to data](@/guides/getting-started/binding-to-data.md)
|
389
|
-
* - [Saving data](@/guides/getting-started/saving-data.md)
|
388
|
+
* - [Binding to data](@/guides/getting-started/binding-to-data/binding-to-data.md)
|
389
|
+
* - [Saving data](@/guides/getting-started/saving-data/saving-data.md)
|
390
390
|
*
|
391
391
|
* @event Hooks#afterLoadData
|
392
|
-
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
392
|
+
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
393
393
|
* @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
|
394
394
|
* @param {string} source The source of the call
|
395
395
|
*/
|
@@ -399,12 +399,12 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
399
399
|
* modifies Handsontable's [`data`](@/api/options.md#data).
|
400
400
|
*
|
401
401
|
* Read more:
|
402
|
-
* - [Binding to data](@/guides/getting-started/binding-to-data.md)
|
403
|
-
* - [Saving data](@/guides/getting-started/saving-data.md)
|
402
|
+
* - [Binding to data](@/guides/getting-started/binding-to-data/binding-to-data.md)
|
403
|
+
* - [Saving data](@/guides/getting-started/saving-data/saving-data.md)
|
404
404
|
*
|
405
405
|
* @event Hooks#afterUpdateData
|
406
406
|
* @since 11.1.0
|
407
|
-
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
407
|
+
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
408
408
|
* @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
|
409
409
|
* @param {string} source The source of the call
|
410
410
|
*/
|
@@ -498,7 +498,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
498
498
|
* @param {number} amount An amount of removed columns.
|
499
499
|
* @param {number[]} physicalColumns An array of physical columns removed from the data source.
|
500
500
|
* @param {string} [source] String that identifies source of hook call
|
501
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
501
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
502
502
|
*/
|
503
503
|
'afterRemoveCol',
|
504
504
|
/**
|
@@ -509,7 +509,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
509
509
|
* @param {number} amount An amount of removed rows.
|
510
510
|
* @param {number[]} physicalRows An array of physical rows removed from the data source.
|
511
511
|
* @param {string} [source] String that identifies source of hook call
|
512
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
512
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
513
513
|
*/
|
514
514
|
'afterRemoveRow',
|
515
515
|
/**
|
@@ -810,7 +810,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
810
810
|
* @event Hooks#afterSetDataAtCell
|
811
811
|
* @param {Array} changes An array of changes in format `[[row, column, oldValue, value], ...]`.
|
812
812
|
* @param {string} [source] String that identifies source of hook call
|
813
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
813
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
814
814
|
*/
|
815
815
|
'afterSetDataAtCell',
|
816
816
|
/**
|
@@ -820,7 +820,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
820
820
|
* @event Hooks#afterSetDataAtRowProp
|
821
821
|
* @param {Array} changes An array of changes in format `[[row, prop, oldValue, value], ...]`.
|
822
822
|
* @param {string} [source] String that identifies source of hook call
|
823
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
823
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
824
824
|
*/
|
825
825
|
'afterSetDataAtRowProp',
|
826
826
|
/**
|
@@ -852,7 +852,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
852
852
|
* @param {number} row Visual row index.
|
853
853
|
* @param {string|number} prop Property name / visual column index.
|
854
854
|
* @param {string} [source] String that identifies source of hook call
|
855
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
855
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
856
856
|
* @returns {undefined | boolean} If `false` the cell will be marked as invalid, `true` otherwise.
|
857
857
|
*/
|
858
858
|
'afterValidate',
|
@@ -928,7 +928,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
928
928
|
* @event Hooks#beforeChange
|
929
929
|
* @param {Array[]} changes 2D array containing information about each of the edited cells `[[row, prop, oldVal, newVal], ...]`. `row` is a visual row index.
|
930
930
|
* @param {string} [source] String that identifies source of hook call
|
931
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
931
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
932
932
|
* @returns {undefined | boolean} If `false` all changes were cancelled, `true` otherwise.
|
933
933
|
* @example
|
934
934
|
* ::: only-for javascript
|
@@ -998,7 +998,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
998
998
|
* @event Hooks#beforeChangeRender
|
999
999
|
* @param {Array[]} changes Array in form of `[row, prop, oldValue, newValue]`.
|
1000
1000
|
* @param {string} [source] String that identifies source of hook call
|
1001
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
1001
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
1002
1002
|
*/
|
1003
1003
|
'beforeChangeRender',
|
1004
1004
|
/**
|
@@ -1048,12 +1048,12 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1048
1048
|
* or the [`updateSettings()`](@/api/core.md#updatesettings) method.
|
1049
1049
|
*
|
1050
1050
|
* Read more:
|
1051
|
-
* - [Binding to data](@/guides/getting-started/binding-to-data.md)
|
1052
|
-
* - [Saving data](@/guides/getting-started/saving-data.md)
|
1051
|
+
* - [Binding to data](@/guides/getting-started/binding-to-data/binding-to-data.md)
|
1052
|
+
* - [Saving data](@/guides/getting-started/saving-data/saving-data.md)
|
1053
1053
|
*
|
1054
1054
|
* @event Hooks#beforeLoadData
|
1055
1055
|
* @since 8.0.0
|
1056
|
-
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
1056
|
+
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
1057
1057
|
* @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
|
1058
1058
|
* @param {string} source The source of the call
|
1059
1059
|
* @returns {Array} The returned array will be used as Handsontable's new dataset.
|
@@ -1064,12 +1064,12 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1064
1064
|
* modifies Handsontable's [`data`](@/api/options.md#data).
|
1065
1065
|
*
|
1066
1066
|
* Read more:
|
1067
|
-
* - [Binding to data](@/guides/getting-started/binding-to-data.md)
|
1068
|
-
* - [Saving data](@/guides/getting-started/saving-data.md)
|
1067
|
+
* - [Binding to data](@/guides/getting-started/binding-to-data/binding-to-data.md)
|
1068
|
+
* - [Saving data](@/guides/getting-started/saving-data/saving-data.md)
|
1069
1069
|
*
|
1070
1070
|
* @event Hooks#beforeUpdateData
|
1071
1071
|
* @since 11.1.0
|
1072
|
-
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
1072
|
+
* @param {Array} sourceData An [array of arrays](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-arrays), or an [array of objects](@/guides/getting-started/binding-to-data/binding-to-data.md#array-of-objects), that contains Handsontable's data
|
1073
1073
|
* @param {boolean} initialLoad A flag that indicates whether the data was loaded at Handsontable's initialization (`true`) or later (`false`)
|
1074
1074
|
* @param {string} source The source of the call
|
1075
1075
|
* @returns {Array} The returned array will be used as Handsontable's new dataset.
|
@@ -1142,7 +1142,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1142
1142
|
* @param {number} amount Amount of columns to be removed.
|
1143
1143
|
* @param {number[]} physicalColumns An array of physical columns removed from the data source.
|
1144
1144
|
* @param {string} [source] String that identifies source of hook call
|
1145
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
1145
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
1146
1146
|
* @returns {*|boolean} If false is returned the action is canceled.
|
1147
1147
|
*/
|
1148
1148
|
'beforeRemoveCol',
|
@@ -1154,7 +1154,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1154
1154
|
* @param {number} amount Amount of rows to be removed.
|
1155
1155
|
* @param {number[]} physicalRows An array of physical rows removed from the data source.
|
1156
1156
|
* @param {string} [source] String that identifies source of hook call
|
1157
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
1157
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
1158
1158
|
* @returns {*|boolean} If false is returned the action is canceled.
|
1159
1159
|
*/
|
1160
1160
|
'beforeRemoveRow',
|
@@ -1297,7 +1297,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1297
1297
|
* @param {number} row Visual row index.
|
1298
1298
|
* @param {string|number} prop Property name / column index.
|
1299
1299
|
* @param {string} [source] String that identifies source of hook call
|
1300
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
1300
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
1301
1301
|
*/
|
1302
1302
|
'beforeValidate',
|
1303
1303
|
/**
|
@@ -1740,11 +1740,11 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1740
1740
|
* @param {number} finalIndex Visual column index, being a start index for the moved columns.
|
1741
1741
|
* Points to where the elements will be placed after the moving action.
|
1742
1742
|
* To check visualization of final index please take a look at
|
1743
|
-
* [documentation](@/guides/columns/column-moving.md).
|
1743
|
+
* [documentation](@/guides/columns/column-moving/column-moving.md).
|
1744
1744
|
* @param {number|undefined} dropIndex Visual column index, being a drop index for the moved columns.
|
1745
1745
|
* Points to where we are going to drop the moved elements. To check
|
1746
1746
|
* visualization of drop index please take a look at
|
1747
|
-
* [documentation](@/guides/columns/column-moving.md).
|
1747
|
+
* [documentation](@/guides/columns/column-moving/column-moving.md).
|
1748
1748
|
* It's `undefined` when `dragColumns` function wasn't called.
|
1749
1749
|
* @param {boolean} movePossible Indicates if it's possible to move rows to the desired position.
|
1750
1750
|
* @returns {undefined | boolean} If `false` the column will not be moved, `true` otherwise.
|
@@ -1759,11 +1759,11 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1759
1759
|
* @param {number} finalIndex Visual column index, being a start index for the moved columns.
|
1760
1760
|
* Points to where the elements will be placed after the moving action.
|
1761
1761
|
* To check visualization of final index please take a look at
|
1762
|
-
* [documentation](@/guides/columns/column-moving.md).
|
1762
|
+
* [documentation](@/guides/columns/column-moving/column-moving.md).
|
1763
1763
|
* @param {number|undefined} dropIndex Visual column index, being a drop index for the moved columns.
|
1764
1764
|
* Points to where we are going to drop the moved elements.
|
1765
1765
|
* To check visualization of drop index please take a look at
|
1766
|
-
* [documentation](@/guides/columns/column-moving.md).
|
1766
|
+
* [documentation](@/guides/columns/column-moving/column-moving.md).
|
1767
1767
|
* It's `undefined` when `dragColumns` function wasn't called.
|
1768
1768
|
* @param {boolean} movePossible Indicates if it was possible to move columns to the desired position.
|
1769
1769
|
* @param {boolean} orderChanged Indicates if order of columns was changed by move.
|
@@ -1797,11 +1797,11 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1797
1797
|
* @param {number} finalIndex Visual row index, being a start index for the moved rows.
|
1798
1798
|
* Points to where the elements will be placed after the moving action.
|
1799
1799
|
* To check visualization of final index please take a look at
|
1800
|
-
* [documentation](@/guides/rows/row-moving.md).
|
1800
|
+
* [documentation](@/guides/rows/row-moving/row-moving.md).
|
1801
1801
|
* @param {number|undefined} dropIndex Visual row index, being a drop index for the moved rows.
|
1802
1802
|
* Points to where we are going to drop the moved elements.
|
1803
1803
|
* To check visualization of drop index please take a look at
|
1804
|
-
* [documentation](@/guides/rows/row-moving.md).
|
1804
|
+
* [documentation](@/guides/rows/row-moving/row-moving.md).
|
1805
1805
|
* It's `undefined` when `dragRows` function wasn't called.
|
1806
1806
|
* @param {boolean} movePossible Indicates if it's possible to move rows to the desired position.
|
1807
1807
|
* @returns {*|boolean} If false is returned the action is canceled.
|
@@ -1816,11 +1816,11 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1816
1816
|
* @param {number} finalIndex Visual row index, being a start index for the moved rows.
|
1817
1817
|
* Points to where the elements will be placed after the moving action.
|
1818
1818
|
* To check visualization of final index please take a look at
|
1819
|
-
* [documentation](@/guides/rows/row-moving.md).
|
1819
|
+
* [documentation](@/guides/rows/row-moving/row-moving.md).
|
1820
1820
|
* @param {number|undefined} dropIndex Visual row index, being a drop index for the moved rows.
|
1821
1821
|
* Points to where we are going to drop the moved elements.
|
1822
1822
|
* To check visualization of drop index please take a look at
|
1823
|
-
* [documentation](@/guides/rows/row-moving.md).
|
1823
|
+
* [documentation](@/guides/rows/row-moving/row-moving.md).
|
1824
1824
|
* It's `undefined` when `dragRows` function wasn't called.
|
1825
1825
|
* @param {boolean} movePossible Indicates if it was possible to move rows to the desired position.
|
1826
1826
|
* @param {boolean} orderChanged Indicates if order of rows was changed by move.
|
@@ -1893,7 +1893,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1893
1893
|
'beforeStretchingColumnWidth',
|
1894
1894
|
/**
|
1895
1895
|
* Fired by the [`Filters`](@/api/filters.md) plugin,
|
1896
|
-
* before a [column filter](@/guides/columns/column-filter.md) gets applied.
|
1896
|
+
* before a [column filter](@/guides/columns/column-filter/column-filter.md) gets applied.
|
1897
1897
|
*
|
1898
1898
|
* [`beforeFilter`](#beforefilter) takes one argument (`conditionsStack`), which is an array of objects.
|
1899
1899
|
* Each object represents one of your [column filters](@/api/filters.md#addcondition),
|
@@ -1938,7 +1938,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1938
1938
|
*```
|
1939
1939
|
*
|
1940
1940
|
* Read more:
|
1941
|
-
* - [Guides: Column filter](@/guides/columns/column-filter.md)
|
1941
|
+
* - [Guides: Column filter](@/guides/columns/column-filter/column-filter.md)
|
1942
1942
|
* - [Hooks: `afterFilter`](#afterfilter)
|
1943
1943
|
* - [Options: `filters`](@/api/options.md#filters)
|
1944
1944
|
* - [Plugins: `Filters`](@/api/filters.md)
|
@@ -1951,7 +1951,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1951
1951
|
'beforeFilter',
|
1952
1952
|
/**
|
1953
1953
|
* Fired by the [`Filters`](@/api/filters.md) plugin,
|
1954
|
-
* after a [column filter](@/guides/columns/column-filter.md) gets applied.
|
1954
|
+
* after a [column filter](@/guides/columns/column-filter/column-filter.md) gets applied.
|
1955
1955
|
*
|
1956
1956
|
* [`afterFilter`](#afterfilter) takes one argument (`conditionsStack`), which is an array of objects.
|
1957
1957
|
* Each object represents one of your [column filters](@/api/filters.md#addcondition),
|
@@ -1985,7 +1985,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
1985
1985
|
* ```
|
1986
1986
|
*
|
1987
1987
|
* Read more:
|
1988
|
-
* - [Guides: Column filter](@/guides/columns/column-filter.md)
|
1988
|
+
* - [Guides: Column filter](@/guides/columns/column-filter/column-filter.md)
|
1989
1989
|
* - [Hooks: `beforeFilter`](#beforefilter)
|
1990
1990
|
* - [Options: `filters`](@/api/options.md#filters)
|
1991
1991
|
* - [Plugins: `Filters`](@/api/filters.md)
|
@@ -2005,7 +2005,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2005
2005
|
* This hook gets also fired on Handsontable's initialization, returning the addresses and values of all cells.
|
2006
2006
|
*
|
2007
2007
|
* Read more:
|
2008
|
-
* - [Guides: Formula calculation](@/guides/formulas/formula-calculation.md)
|
2008
|
+
* - [Guides: Formula calculation](@/guides/formulas/formula-calculation/formula-calculation.md)
|
2009
2009
|
* - [HyperFormula documentation: `valuesUpdated`](https://hyperformula.handsontable.com/api/interfaces/listeners.html#valuesupdated)
|
2010
2010
|
*
|
2011
2011
|
* @since 9.0.0
|
@@ -2094,7 +2094,7 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
|
|
2094
2094
|
* @since 8.4.0
|
2095
2095
|
* @param {Array} doneActions Stack of actions which may be undone.
|
2096
2096
|
* @param {string} [source] String that identifies source of action
|
2097
|
-
* ([list of all available sources](@/guides/getting-started/events-and-hooks.md#definition-for-source-argument)).
|
2097
|
+
* ([list of all available sources](@/guides/getting-started/events-and-hooks/events-and-hooks.md#definition-for-source-argument)).
|
2098
2098
|
* @returns {*|boolean} If false is returned the action of changing undo stack is canceled.
|
2099
2099
|
*/
|
2100
2100
|
'beforeUndoStackChange',
|
@@ -2885,7 +2885,7 @@ class Hooks {
|
|
2885
2885
|
/**
|
2886
2886
|
* Registers a hook name (adds it to the list of the known hook names). Used by plugins.
|
2887
2887
|
* It is not necessary to call register, but if you use it, your plugin hook will be used returned by
|
2888
|
-
* the `getRegistered` method. (which itself is used in the [demo](@/guides/getting-started/events-and-hooks.md)).
|
2888
|
+
* the `getRegistered` method. (which itself is used in the [demo](@/guides/getting-started/events-and-hooks/events-and-hooks.md)).
|
2889
2889
|
*
|
2890
2890
|
* @param {string} key The hook name.
|
2891
2891
|
*
|
@@ -24,26 +24,26 @@ const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 220;
|
|
24
24
|
* @class ColumnSummary
|
25
25
|
*
|
26
26
|
* @description
|
27
|
-
* The `ColumnSummary` plugin lets you [easily summarize your columns](@/guides/columns/column-summary.md).
|
27
|
+
* The `ColumnSummary` plugin lets you [easily summarize your columns](@/guides/columns/column-summary/column-summary.md).
|
28
28
|
*
|
29
|
-
* You can use the [built-in summary functions](@/guides/columns/column-summary.md#built-in-summary-functions),
|
30
|
-
* or implement a [custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function).
|
29
|
+
* You can use the [built-in summary functions](@/guides/columns/column-summary/column-summary.md#built-in-summary-functions),
|
30
|
+
* or implement a [custom summary function](@/guides/columns/column-summary/column-summary.md#implement-a-custom-summary-function).
|
31
31
|
*
|
32
32
|
* For each column summary, you can set the following configuration options:
|
33
33
|
*
|
34
34
|
* | Option | Required | Type | Default | Description |
|
35
35
|
* |---|---|---|---|---|
|
36
|
-
* | `sourceColumn` | No | Number | Same as `destinationColumn` | [Selects a column to summarize](@/guides/columns/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
37
|
-
* | `ranges` | No | Array | - | [Selects ranges of rows to summarize](@/guides/columns/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
38
|
-
* | `type` | Yes | String | - | [Sets a summary function](@/guides/columns/column-summary.md#step-3-calculate-your-summary) |
|
39
|
-
* | `destinationRow` | Yes | Number | - | [Sets the destination cell's row coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
40
|
-
* | `destinationColumn` | Yes | Number | - | [Sets the destination cell's column coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
41
|
-
* | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary.md#force-numeric-values) |
|
42
|
-
* | `reversedRowCoords` | No | Boolean | `false` | [Reverses row coordinates](@/guides/columns/column-summary.md#step-5-make-room-for-the-destination-cell) |
|
43
|
-
* | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary.md#throw-data-type-errors) |
|
36
|
+
* | `sourceColumn` | No | Number | Same as `destinationColumn` | [Selects a column to summarize](@/guides/columns/column-summary/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
37
|
+
* | `ranges` | No | Array | - | [Selects ranges of rows to summarize](@/guides/columns/column-summary/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
38
|
+
* | `type` | Yes | String | - | [Sets a summary function](@/guides/columns/column-summary/column-summary.md#step-3-calculate-your-summary) |
|
39
|
+
* | `destinationRow` | Yes | Number | - | [Sets the destination cell's row coordinate](@/guides/columns/column-summary/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
40
|
+
* | `destinationColumn` | Yes | Number | - | [Sets the destination cell's column coordinate](@/guides/columns/column-summary/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
41
|
+
* | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary/column-summary.md#force-numeric-values) |
|
42
|
+
* | `reversedRowCoords` | No | Boolean | `false` | [Reverses row coordinates](@/guides/columns/column-summary/column-summary.md#step-5-make-room-for-the-destination-cell) |
|
43
|
+
* | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary/column-summary.md#throw-data-type-errors) |
|
44
44
|
* | `readOnly` | No | Boolean | `true` | Makes summary cell read-only |
|
45
|
-
* | `roundFloat` | No | Number/<br>Boolean | - | [Rounds summary result](@/guides/columns/column-summary.md#round-a-column-summary-result) |
|
46
|
-
* | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function) |
|
45
|
+
* | `roundFloat` | No | Number/<br>Boolean | - | [Rounds summary result](@/guides/columns/column-summary/column-summary.md#round-a-column-summary-result) |
|
46
|
+
* | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary/column-summary.md#implement-a-custom-summary-function) |
|
47
47
|
*
|
48
48
|
* @example
|
49
49
|
* ::: only-for javascript
|
@@ -116,7 +116,7 @@ class ColumnSummary extends _base.BasePlugin {
|
|
116
116
|
*
|
117
117
|
* @param {Array} rows Array of visual row indexes to be moved.
|
118
118
|
* @param {number} finalIndex Visual row index, being a start index for the moved rows. Points to where the elements will be placed after the moving action.
|
119
|
-
* To check the visualization of the final index, please take a look at [documentation](@/guides/rows/row-moving.md).
|
119
|
+
* To check the visualization of the final index, please take a look at [documentation](@/guides/rows/row-moving/row-moving.md).
|
120
120
|
*/
|
121
121
|
_classPrivateMethodInitSpec(this, _onAfterRowMove);
|
122
122
|
/**
|
@@ -20,26 +20,26 @@ export const PLUGIN_PRIORITY = 220;
|
|
20
20
|
* @class ColumnSummary
|
21
21
|
*
|
22
22
|
* @description
|
23
|
-
* The `ColumnSummary` plugin lets you [easily summarize your columns](@/guides/columns/column-summary.md).
|
23
|
+
* The `ColumnSummary` plugin lets you [easily summarize your columns](@/guides/columns/column-summary/column-summary.md).
|
24
24
|
*
|
25
|
-
* You can use the [built-in summary functions](@/guides/columns/column-summary.md#built-in-summary-functions),
|
26
|
-
* or implement a [custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function).
|
25
|
+
* You can use the [built-in summary functions](@/guides/columns/column-summary/column-summary.md#built-in-summary-functions),
|
26
|
+
* or implement a [custom summary function](@/guides/columns/column-summary/column-summary.md#implement-a-custom-summary-function).
|
27
27
|
*
|
28
28
|
* For each column summary, you can set the following configuration options:
|
29
29
|
*
|
30
30
|
* | Option | Required | Type | Default | Description |
|
31
31
|
* |---|---|---|---|---|
|
32
|
-
* | `sourceColumn` | No | Number | Same as `destinationColumn` | [Selects a column to summarize](@/guides/columns/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
33
|
-
* | `ranges` | No | Array | - | [Selects ranges of rows to summarize](@/guides/columns/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
34
|
-
* | `type` | Yes | String | - | [Sets a summary function](@/guides/columns/column-summary.md#step-3-calculate-your-summary) |
|
35
|
-
* | `destinationRow` | Yes | Number | - | [Sets the destination cell's row coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
36
|
-
* | `destinationColumn` | Yes | Number | - | [Sets the destination cell's column coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
37
|
-
* | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary.md#force-numeric-values) |
|
38
|
-
* | `reversedRowCoords` | No | Boolean | `false` | [Reverses row coordinates](@/guides/columns/column-summary.md#step-5-make-room-for-the-destination-cell) |
|
39
|
-
* | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary.md#throw-data-type-errors) |
|
32
|
+
* | `sourceColumn` | No | Number | Same as `destinationColumn` | [Selects a column to summarize](@/guides/columns/column-summary/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
33
|
+
* | `ranges` | No | Array | - | [Selects ranges of rows to summarize](@/guides/columns/column-summary/column-summary.md#step-2-select-cells-that-you-want-to-summarize) |
|
34
|
+
* | `type` | Yes | String | - | [Sets a summary function](@/guides/columns/column-summary/column-summary.md#step-3-calculate-your-summary) |
|
35
|
+
* | `destinationRow` | Yes | Number | - | [Sets the destination cell's row coordinate](@/guides/columns/column-summary/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
36
|
+
* | `destinationColumn` | Yes | Number | - | [Sets the destination cell's column coordinate](@/guides/columns/column-summary/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
|
37
|
+
* | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary/column-summary.md#force-numeric-values) |
|
38
|
+
* | `reversedRowCoords` | No | Boolean | `false` | [Reverses row coordinates](@/guides/columns/column-summary/column-summary.md#step-5-make-room-for-the-destination-cell) |
|
39
|
+
* | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary/column-summary.md#throw-data-type-errors) |
|
40
40
|
* | `readOnly` | No | Boolean | `true` | Makes summary cell read-only |
|
41
|
-
* | `roundFloat` | No | Number/<br>Boolean | - | [Rounds summary result](@/guides/columns/column-summary.md#round-a-column-summary-result) |
|
42
|
-
* | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function) |
|
41
|
+
* | `roundFloat` | No | Number/<br>Boolean | - | [Rounds summary result](@/guides/columns/column-summary/column-summary.md#round-a-column-summary-result) |
|
42
|
+
* | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary/column-summary.md#implement-a-custom-summary-function) |
|
43
43
|
*
|
44
44
|
* @example
|
45
45
|
* ::: only-for javascript
|
@@ -112,7 +112,7 @@ export class ColumnSummary extends BasePlugin {
|
|
112
112
|
*
|
113
113
|
* @param {Array} rows Array of visual row indexes to be moved.
|
114
114
|
* @param {number} finalIndex Visual row index, being a start index for the moved rows. Points to where the elements will be placed after the moving action.
|
115
|
-
* To check the visualization of the final index, please take a look at [documentation](@/guides/rows/row-moving.md).
|
115
|
+
* To check the visualization of the final index, please take a look at [documentation](@/guides/rows/row-moving/row-moving.md).
|
116
116
|
*/
|
117
117
|
_classPrivateMethodInitSpec(this, _onAfterRowMove);
|
118
118
|
/**
|
@@ -33,14 +33,14 @@ _pluginHooks.default.getSingleton().register('afterContextMenuExecute');
|
|
33
33
|
* @class ContextMenu
|
34
34
|
* @description
|
35
35
|
* This plugin creates the Handsontable Context Menu. It allows to create a new row or column at any place in the
|
36
|
-
* grid among [other features](@/guides/accessories-and-menus/context-menu.md#context-menu-with-specific-options).
|
36
|
+
* grid among [other features](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options).
|
37
37
|
* Possible values:
|
38
38
|
* * `true` (to enable default options),
|
39
39
|
* * `false` (to disable completely)
|
40
40
|
* * `{ uiContainer: containerDomElement }` (to declare a container for all of the Context Menu's dom elements to be placed in).
|
41
|
-
* * An array of [the available strings](@/guides/accessories-and-menus/context-menu.md#context-menu-with-specific-options)
|
41
|
+
* * An array of [the available strings](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options)
|
42
42
|
*
|
43
|
-
* See [the context menu demo](@/guides/accessories-and-menus/context-menu.md) for examples.
|
43
|
+
* See [the context menu demo](@/guides/accessories-and-menus/context-menu/context-menu.md) for examples.
|
44
44
|
*
|
45
45
|
* @example
|
46
46
|
* ```js
|
@@ -29,14 +29,14 @@ Hooks.getSingleton().register('afterContextMenuExecute');
|
|
29
29
|
* @class ContextMenu
|
30
30
|
* @description
|
31
31
|
* This plugin creates the Handsontable Context Menu. It allows to create a new row or column at any place in the
|
32
|
-
* grid among [other features](@/guides/accessories-and-menus/context-menu.md#context-menu-with-specific-options).
|
32
|
+
* grid among [other features](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options).
|
33
33
|
* Possible values:
|
34
34
|
* * `true` (to enable default options),
|
35
35
|
* * `false` (to disable completely)
|
36
36
|
* * `{ uiContainer: containerDomElement }` (to declare a container for all of the Context Menu's dom elements to be placed in).
|
37
|
-
* * An array of [the available strings](@/guides/accessories-and-menus/context-menu.md#context-menu-with-specific-options)
|
37
|
+
* * An array of [the available strings](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options)
|
38
38
|
*
|
39
|
-
* See [the context menu demo](@/guides/accessories-and-menus/context-menu.md) for examples.
|
39
|
+
* See [the context menu demo](@/guides/accessories-and-menus/context-menu/context-menu.md) for examples.
|
40
40
|
*
|
41
41
|
* @example
|
42
42
|
* ```js
|
@@ -52,12 +52,12 @@ const META_HEAD = ['<meta name="generator" content="Handsontable"/>', '<style ty
|
|
52
52
|
* Control the `CopyPaste` plugin programmatically through its [API methods](#methods).
|
53
53
|
*
|
54
54
|
* The user can access the copy-paste features through:
|
55
|
-
* - The [context menu](@/guides/cell-features/clipboard.md#context-menu).
|
56
|
-
* - The [keyboard shortcuts](@/guides/cell-features/clipboard.md#related-keyboard-shortcuts).
|
55
|
+
* - The [context menu](@/guides/cell-features/clipboard/clipboard.md#context-menu).
|
56
|
+
* - The [keyboard shortcuts](@/guides/cell-features/clipboard/clipboard.md#related-keyboard-shortcuts).
|
57
57
|
* - The browser's menu bar.
|
58
58
|
*
|
59
59
|
* Read more:
|
60
|
-
* - [Guides: Clipboard](@/guides/cell-features/clipboard.md)
|
60
|
+
* - [Guides: Clipboard](@/guides/cell-features/clipboard/clipboard.md)
|
61
61
|
* - [Configuration options: `copyPaste`](@/api/options.md#copypaste)
|
62
62
|
*
|
63
63
|
* @example
|
@@ -48,12 +48,12 @@ const META_HEAD = ['<meta name="generator" content="Handsontable"/>', '<style ty
|
|
48
48
|
* Control the `CopyPaste` plugin programmatically through its [API methods](#methods).
|
49
49
|
*
|
50
50
|
* The user can access the copy-paste features through:
|
51
|
-
* - The [context menu](@/guides/cell-features/clipboard.md#context-menu).
|
52
|
-
* - The [keyboard shortcuts](@/guides/cell-features/clipboard.md#related-keyboard-shortcuts).
|
51
|
+
* - The [context menu](@/guides/cell-features/clipboard/clipboard.md#context-menu).
|
52
|
+
* - The [keyboard shortcuts](@/guides/cell-features/clipboard/clipboard.md#related-keyboard-shortcuts).
|
53
53
|
* - The browser's menu bar.
|
54
54
|
*
|
55
55
|
* Read more:
|
56
|
-
* - [Guides: Clipboard](@/guides/cell-features/clipboard.md)
|
56
|
+
* - [Guides: Clipboard](@/guides/cell-features/clipboard/clipboard.md)
|
57
57
|
* - [Configuration options: `copyPaste`](@/api/options.md#copypaste)
|
58
58
|
*
|
59
59
|
* @example
|
@@ -36,7 +36,7 @@ const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 90;
|
|
36
36
|
* of an array.
|
37
37
|
*
|
38
38
|
* See [`customBorders` configuration option](@/api/options.md#customBorders) or go to
|
39
|
-
* [Custom cell borders demo](@/guides/cell-features/formatting-cells.md#custom-cell-borders) for more examples.
|
39
|
+
* [Custom cell borders demo](@/guides/cell-features/formatting-cells/formatting-cells.md#custom-cell-borders) for more examples.
|
40
40
|
*
|
41
41
|
* @example
|
42
42
|
* ```js
|
@@ -31,7 +31,7 @@ export const PLUGIN_PRIORITY = 90;
|
|
31
31
|
* of an array.
|
32
32
|
*
|
33
33
|
* See [`customBorders` configuration option](@/api/options.md#customBorders) or go to
|
34
|
-
* [Custom cell borders demo](@/guides/cell-features/formatting-cells.md#custom-cell-borders) for more examples.
|
34
|
+
* [Custom cell borders demo](@/guides/cell-features/formatting-cells/formatting-cells.md#custom-cell-borders) for more examples.
|
35
35
|
*
|
36
36
|
* @example
|
37
37
|
* ```js
|
@@ -43,7 +43,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
43
43
|
*
|
44
44
|
* @description
|
45
45
|
* This plugin creates the Handsontable Dropdown Menu. It allows to create a new row or column at any place in the grid
|
46
|
-
* among [other features](@/guides/accessories-and-menus/context-menu.md#context-menu-with-specific-options).
|
46
|
+
* among [other features](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options).
|
47
47
|
* Possible values:
|
48
48
|
* * `true` (to enable default options),
|
49
49
|
* * `false` (to disable completely).
|
@@ -52,7 +52,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
52
52
|
* * `["row_above", "row_below", "col_left", "col_right",
|
53
53
|
* "remove_row", "remove_col", "---------", "undo", "redo"]`.
|
54
54
|
*
|
55
|
-
* See [the dropdown menu demo](@/guides/columns/column-menu.md) for examples.
|
55
|
+
* See [the dropdown menu demo](@/guides/columns/column-menu/column-menu.md) for examples.
|
56
56
|
*
|
57
57
|
* @example
|
58
58
|
* ::: only-for javascript
|
@@ -39,7 +39,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
39
39
|
*
|
40
40
|
* @description
|
41
41
|
* This plugin creates the Handsontable Dropdown Menu. It allows to create a new row or column at any place in the grid
|
42
|
-
* among [other features](@/guides/accessories-and-menus/context-menu.md#context-menu-with-specific-options).
|
42
|
+
* among [other features](@/guides/accessories-and-menus/context-menu/context-menu.md#context-menu-with-specific-options).
|
43
43
|
* Possible values:
|
44
44
|
* * `true` (to enable default options),
|
45
45
|
* * `false` (to disable completely).
|
@@ -48,7 +48,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
48
48
|
* * `["row_above", "row_below", "col_left", "col_right",
|
49
49
|
* "remove_row", "remove_col", "---------", "undo", "redo"]`.
|
50
50
|
*
|
51
|
-
* See [the dropdown menu demo](@/guides/columns/column-menu.md) for examples.
|
51
|
+
* See [the dropdown menu demo](@/guides/columns/column-menu/column-menu.md) for examples.
|
52
52
|
*
|
53
53
|
* @example
|
54
54
|
* ::: only-for javascript
|
@@ -18,7 +18,7 @@ const PLUGIN_PRIORITY = exports.PLUGIN_PRIORITY = 240;
|
|
18
18
|
* @description
|
19
19
|
* The `ExportFile` plugin lets you export table data as a string, blob, or downloadable CSV file.
|
20
20
|
*
|
21
|
-
* See [the export file demo](@/guides/accessories-and-menus/export-to-csv.md) for examples.
|
21
|
+
* See [the export file demo](@/guides/accessories-and-menus/export-to-csv/export-to-csv.md) for examples.
|
22
22
|
*
|
23
23
|
* @example
|
24
24
|
* ::: only-for javascript
|
@@ -12,7 +12,7 @@ export const PLUGIN_PRIORITY = 240;
|
|
12
12
|
* @description
|
13
13
|
* The `ExportFile` plugin lets you export table data as a string, blob, or downloadable CSV file.
|
14
14
|
*
|
15
|
-
* See [the export file demo](@/guides/accessories-and-menus/export-to-csv.md) for examples.
|
15
|
+
* See [the export file demo](@/guides/accessories-and-menus/export-to-csv/export-to-csv.md) for examples.
|
16
16
|
*
|
17
17
|
* @example
|
18
18
|
* ::: only-for javascript
|
@@ -50,7 +50,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
50
50
|
* @description
|
51
51
|
* The plugin allows filtering the table data either by the built-in component or with the API.
|
52
52
|
*
|
53
|
-
* See [the filtering demo](@/guides/columns/column-filter.md) for examples.
|
53
|
+
* See [the filtering demo](@/guides/columns/column-filter/column-filter.md) for examples.
|
54
54
|
*
|
55
55
|
* @example
|
56
56
|
* ::: only-for javascript
|
@@ -44,7 +44,7 @@ const SHORTCUTS_GROUP = PLUGIN_KEY;
|
|
44
44
|
* @description
|
45
45
|
* The plugin allows filtering the table data either by the built-in component or with the API.
|
46
46
|
*
|
47
|
-
* See [the filtering demo](@/guides/columns/column-filter.md) for examples.
|
47
|
+
* See [the filtering demo](@/guides/columns/column-filter/column-filter.md) for examples.
|
48
48
|
*
|
49
49
|
* @example
|
50
50
|
* ::: only-for javascript
|
@@ -50,7 +50,7 @@ const isBlockedSource = source => source === 'UndoRedo.undo' || source === 'Undo
|
|
50
50
|
* integration with our other product, [HyperFormula](https://github.com/handsontable/hyperformula/), which is a
|
51
51
|
* powerful calculation engine with an extensive number of features.
|
52
52
|
*
|
53
|
-
* To test out HyperFormula, see [this guide](@/guides/formulas/formula-calculation.md#available-functions).
|
53
|
+
* To test out HyperFormula, see [this guide](@/guides/formulas/formula-calculation/formula-calculation.md#available-functions).
|
54
54
|
*
|
55
55
|
* @plugin Formulas
|
56
56
|
* @class Formulas
|
@@ -46,7 +46,7 @@ const isBlockedSource = source => source === 'UndoRedo.undo' || source === 'Undo
|
|
46
46
|
* integration with our other product, [HyperFormula](https://github.com/handsontable/hyperformula/), which is a
|
47
47
|
* powerful calculation engine with an extensive number of features.
|
48
48
|
*
|
49
|
-
* To test out HyperFormula, see [this guide](@/guides/formulas/formula-calculation.md#available-functions).
|
49
|
+
* To test out HyperFormula, see [this guide](@/guides/formulas/formula-calculation/formula-calculation.md#available-functions).
|
50
50
|
*
|
51
51
|
* @plugin Formulas
|
52
52
|
* @class Formulas
|