getText

returns the text value of a cell

string getText(id rowid,id colid);
rowididthe id of the row
colididthe name of the column
stringthe value of the cell as rendered in a datatable

Example

//get value
var val = $$("mytable").getItem(12).price;
 
//get rendered text
var val = $$("mytable").getText(12, "price");

Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix popular javascript framework and page of datatable html product.