getColumnValues (NotesXspViewEntry - JavaScript™)
Gets the value of each column in the view entry.
Defined in
NotesXspViewEntry (JavaScript)Syntax
getColumnValues() : java.util.Vector
Return value | Description |
---|---|
java.util.Vector |
The value of each column. The data types depend on the values. |
Usage
A column value is not returned if it is determined by a formula containing a UI-only function such as@IsExpandable
or @DocNumber
.Examples
This data binding script for a Multiline Edit Box is embedded in a Repeat control with a Domino® view data source whose collection name isrowdata
. The script gets the values of the first
two columns. The second column is numeric.try {
var colvals = rowdata.getColumnValues();
return colvals.elementAt(0) + " " + colvals.elementAt(1).toFixed() + "\n";
} catch (e) {
return e.toString();
}