Deprecated Functionality
Overview
No functionality has been deprecated in this release
Menu Containter
As a result of the introduction of the built in popup functionality in this release, the menu module is no longer responsible for creation of its own popups.
For this reason the module specific menuContainer has been deprecated and replaced with the table wide popupContainer option.
Anywhere you used to use the menuContainer option:
var table = new Tabulator("#example-table", { menuContainer:true, //show menus relative to the table element });
You should now use the popupContainer option:
var table = new Tabulator("#example-table", { popupContainer:true, //show menus and other popups relative to the table element });
Tooltips
With the migration of tooltip functionality to the new Tooltip module the tooltipGenerationMode has become redundant and can be removed.
You should remove any use of the tooltipGenerationMode option:
var table = new Tabulator("#example-table", { tooltipGenerationMode:"hover", });
Editors
Select Editor
The select editor has been removed in this release and replaced with the more configurable list editor.
Column definitions using the select editor
{title:"Example", field:"example", editor:"select"}
Should be replaced with the list editor
{title:"Example", field:"example", editor:"list"}
Autocomplete Editor
The autocomplete editor has been removed in this release and replaced with the more configurable list editor.
Column definitions using the autocomplete editor
{title:"Example", field:"example", editor:"autocomplete"}
Should be replaced with the list editor
{title:"Example", field:"example", editor:"list", editorParams:{autocomplete:true}}