Version 6.1 Released!

Click to checkout the new features

Old Documentation
You are browsing documentation for an old version of Tabulator. Consider upgrading your project to Tabulator 6.1

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"}
Parameter Changes
The paramters and functionality of the list editor are not the same as the select editor. Please read through the param List Editor Documentation to decide the correct params for your usage case.

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}}
Parameter Changes
The paramters and functionality of the list editor are not the same as the autocomplete editor. Please read through the param List Editor Documentation to decide the correct params for your usage case.
Donate