tabulator-tables
Version:
Interactive table generation JavaScript library
12 lines (7 loc) • 394 B
JavaScript
import List from '../../List.js';
export default function(cell, onRendered, success, cancel, editorParams){
this.deprecationMsg("The autocomplete editor has been deprecated, please use the new list editor with the 'autocomplete' editorParam");
editorParams.autocomplete = true;
var list = new List(this, cell, onRendered, success, cancel, editorParams);
return list.input;
}