tabulator-tables 4.4.3 (#38702)

* 4.4.3

* test update

* fix version(patch version not allowed)
This commit is contained in:
Jojoshua
2019-10-01 12:48:37 -04:00
committed by Ryan Cavanaugh
parent 9ce7c58e5b
commit d45ec9519f
2 changed files with 7 additions and 1 deletions

View File

@@ -1175,7 +1175,7 @@ You can pass an optional additional property with sorter, sorterParams that shou
| ((
cell: CellComponent,
onRendered: EmptyCallback,
success: ValueVoidCallback,
success: ValueBooleanCallback,
cancel: ValueVoidCallback,
editorParams: {},
) => HTMLElement | false);

View File

@@ -519,3 +519,9 @@ options.headerSortTristate = true;
colDef.formatter = 'rowSelection';
options.invalidOptionWarnings = false;
colDef.editor = (cell, onRendered, success, cancel, editorParams) => {
const editor = document.createElement('input');
const successful: boolean = success('test');
return editor;
};