select to child in the table and pass a new DT
select to child in the table and pass a new DT
rrzavaleta
Posts: 78Questions: 52Answers: 2
in DataTables
obtaining values hidden's or not visibilyti in the not shown in a table
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use
row().data()
to get the data for a row, including hidden columns.Allan
var Tabladinamica = $('#ing_campoinferior').DataTable();
$('#ing_campoinferior tbody').on('click', 'tr', function () { Tabladinamica.row(this).data()
?
} );
I don't understand. The data for the hidden column is inside the object that
row().data()
returns.Allan