How to get data from one column only from alllied rows
How to get data from one column only from alllied rows

Hi,
how can i get the data from a column only from rows they are applied?
This one give my only the applied rows:
table.rows( { search: 'applied' } )
But this one give me all Data from all rows, not only from the applied rows:
table.rows( { search: 'applied' } ).column(4).data()
I stuck here a little bit.
Greetings,
Ennox
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Try this:
table.column(4, { search: 'applied' }).data()
Kevin
Perfect,
Thanks Kevin!