Retrieve Data from hidden column
Retrieve Data from hidden column
macmmc
Posts: 1Questions: 1Answers: 0
in DataTables
I have hidden (visible: false) a column that contains data. I would like to still access that data. How would one go about doing that?
Answers
You should be able to use
row().data()
orcell().data()
.EDIT: There is also
column().data()
.Kevin