Difference between datatables.editor 1.3.1 and 1.5.6

Difference between datatables.editor 1.3.1 and 1.5.6

Jin ZheGuiJin ZheGui Posts: 3Questions: 2Answers: 0

var data_table = $('#table').Datatable({
data: data,
columns :[ /* some columns */],
tableTools: {
sRowSelect: "os",
sRowSelector: 'td:first-child',
aButtons: [
{ sExtends: "editor_create", editor: editor },
{ sExtends: "editor_edit", editor: editor },
{ sExtends: "editor_remove", editor: editor }
]
}
});

In this code, which version of datatable and button js file have to use?

what is different between using datatables.editor 1.3+ and 1.5+?

Answers

  • allanallan Posts: 64,106Questions: 1Answers: 10,574 Site admin

    The 1.5 upgrade notes are here. The release docs for 1.4 are available here - no upgrade notes for that, as there shouldn't be any breaking changes!

    TableTools (which you are using above) is legacy software now and no longer developed. It has been replaced by Buttons and Select, although you can still use TableTools if you require.

    Allan

This discussion has been closed.