getText
returns the text value of a cell
function getText( // the id of the row rowid: id, // the name of the column colid: id): string
Returns
Section titled “Returns”string
the value of the cell as rendered in a datagrid
Example
Section titled “Example”//get valuevar val = mygrid.getItem(12).price;
//get rendered textvar val = mygrid.getText(12, "price");