Version 6.0 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.0

Deprecated Functionality

Overview

The following functionality is depricated and will be removed in version 5.0

Clipboard

Include Column Headers In Clipboard Output

Deprecated Function

Preventing headers being included in the clipboard output using the clipboardCopyHeader property:

var table = new Tabulator("#example-table", {
    clipboardCopyHeader:false, //disable header titles in copied data
});

Replacement Function

Use the columnHeaders property in the clipboardCopyConfig option:

var table = new Tabulator("#example-table", {
    clipboardCopyConfig:{
        columnHeaders:false, //don't include column headers in clipboard output
    },
});

Formatters

Tick Formatter

Deprecated Function

Assigning tick to the formatter column definition property:

{title:"Driver", field:"driver", formatter:"tick"},

Replacement Function

Use the tickCross formatter with the crossElement param set to false:

{title:"Driver", field:"driver", formatter:"tickCross", formatterParams:{
	crossElement:false,
}},

Editors

Tick Editor

Deprecated Function

Assigning tick to the editor column definition property:

{title:"Driver", field:"driver", editor:"tick"},

Replacement Function

Use the tickCross editor:

{title:"Driver", field:"driver", editor:"tickCross"},

Select Editor Value

Deprecated Function

Passing values directly into the select editors editorParams object:

{title:"Name", field:"name", editor:"select", editorParams:{
    "steve":"Steve Boberson",
    "bob":"Bob Jimmerson",
    "jim":"Jim Stevenson",
}}

Replacement Function

Pass values into the values property of the editorParams object:

{title:"Name", field:"name", editor:"select", editorParams:{
    values:{
        "steve":"Steve Boberson",
        "bob":"Bob Jimmerson",
        "jim":"Jim Stevenson",
    }
}}
Donate