toString (NotesXspViewEntry - JavaScript™)
Gets a string representation of the view entry.
Defined in
NotesXspViewEntry (JavaScript)Syntax
toString() : string
Return value | Description |
---|---|
string |
A list of the column view entries in string format. |
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 a string representation
of each column view entry.try {
if (rowdata.isCategory()) {
return rowdata.toString()
} catch (e) {
return e.toString();
}