How to get data from one column only from alllied rows

How to get data from one column only from alllied rows

EnnoxEnnox Posts: 5Questions: 2Answers: 0

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

Answers

  • kthorngrenkthorngren Posts: 21,172Questions: 26Answers: 4,923
    Answer ✓

    Try this:
    table.column(4, { search: 'applied' }).data()

    Kevin

  • EnnoxEnnox Posts: 5Questions: 2Answers: 0

    Perfect,

    Thanks Kevin!

This discussion has been closed.