jspreadsheet 8.7.3 → 8.7.4
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.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +409 -409
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -427,6 +427,8 @@ declare namespace jspreadsheet {
|
|
|
427
427
|
onformulachain?: (worksheet: worksheetInstance, expressions: Array<object>) => void;
|
|
428
428
|
/** Customize the items available when filter editor is open. */
|
|
429
429
|
onopenfilter?: (worksheet: worksheetInstance, column: number, options: Array<object>) => void | Array<object>;
|
|
430
|
+
/** Intercept the ajax call before save. XHR ajax object */
|
|
431
|
+
onbeforesend?: (worksheet: worksheetInstance, xhr: object) => void
|
|
430
432
|
/** Run every single table update action. Can bring performance issues if perform too much changes. */
|
|
431
433
|
updateTable?: (worksheet: worksheetInstance, cell: Object, x: number, y: number, value: String) => void;
|
|
432
434
|
/** Return false to cancel the contextMenu event, or return custom elements for the contextmenu. */
|