Skip to content

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

string the value of the cell as rendered in a datagrid

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