Difference between datatables.editor 1.3.1 and 1.5.6
Difference between datatables.editor 1.3.1 and 1.5.6

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
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