Getting a value from datatable withouh click
Getting a value from datatable withouh click
MarioZan.Cl
Posts: 2Questions: 2Answers: 0
Hello Friends, I need to get the value in a variable from a datable every time is loaded (without click on it) from a specfiic cel) (i.e first row, first column)
is it possible ?
Thanks a lot
This discussion has been closed.
Answers
Yes - use
cell().data()
. E.g.table.cell(':eq(0)', 0).data()
will get data from the first cell in the table when that code is run.Allan