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
If you have not checked yet, be sure to visit site of our main product Webix javascript ui library and page of tree table ui product.