Version 6.2 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.2

Upgrade Guide v4.2 to 4.3

Previous Version Upgrades

If you are upgrading from any version of tabulator below version 4.2, you should read the v4.1 to 4.2 upgrade guide first.

HTML Output

getHTML Function Output

The getHTML function has changed, where you used to have to pass in a boolean of true to retrieve the active table data

var htmlTable = table.getHtml(true);

You should now use:

var htmlTable = table.getHtml();

Column Visibility

The hideInHtml column definition property has been replaced with the htmlOutput property to provide functionality inline with the print, download and clipboard properties.

Where you used to hide a column in the results of the getHTML function by passing a value of false to the hideInHtml property

{title:"Name", field:"name", hideInHtml:true}

You should now use:

{title:"Hidden Column", field:"secret", htmlOutput:false}
Donate