How to get value from row?
How to get value from row?
rshun
Posts: 44Questions: 9Answers: 0
Hi,
var tr = $(this).closest('tr');
var row = table.row(tr);
I get tr of my row. In my table, there is a column "Unit". How can I get value of "Unit" column?
Thanks,
Rick
This discussion has been closed.
Replies
You could either use
row().data()
or be more specific and usecell().data()
,Colin
Thanks.