getColumnValue (NotesXspViewEntry - JavaScript)

Gets the value of a column in the view entry.

Defined in

NotesXspViewEntry (JavaScript)

Syntax

getColumnValue(name:string) : any
Parameter Description
name:string The programmatic name of the column.
Return value Description
any The value of the column. The data type depends on the value.

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 is rowdata. The script gets the value of a column.
try {
	return rowdata.getColumnValue("subject") + "\n"
} catch (e) {
	return e.toString() + "\n";
}