BasicOView.getCellText Member

Syntax

object.getCellText(row, col);

Arguments

ArgumentSummary
row
col

Returns

Remarks

See Also

Source Code

function bov_getcelltxt (row, col)
{
if (!this.columnNames)
return "";
if (typeof col == "object")
col = col.id;
var ary = col.match (/:(.*)/);
if (ary)
col = ary[1];
var colName = this.columnNames[col];
if (typeof colName == "undefined")
return "";
return this.data[row][colName];
}