Getting a value from datatable withouh click
Getting a value from datatable withouh click
![MarioZan.Cl](https://secure.gravatar.com/avatar/734fe0bd3bf49dbe0b90cceee7bdff97/?default=https%3A%2F%2Fvanillicon.com%2F734fe0bd3bf49dbe0b90cceee7bdff97_200.png&rating=g&size=120)
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