returns the text value of a cell
rowid | id | the id of the row |
colid | id | the name of the column |
string | the value of the cell as rendered in a datatable |
//get value
var val = $$("mytable").getItem(12).price;
//get rendered text
var val = $$("mytable").getText(12, "price");
Back to top