Skip to main content
Version: 10.1

Rows.joinedVal()

note

This article is about the joinedVal() function of the Rows object.

Rows.joinedVal()

Gets the value of a joined column of the first record in the Rows object, if that record has a joined column.

Returns a string.

Syntax

*rows*.joinedVal( *joined-column* )

The required joined-column is a string that is the name of the joined column.

Example

if ($.udb(this.dsId).isJoined()) {
var col = $.udbMeta(this.dsId).cols(this.column).alias();
return record.joinedVal(col) || "";
}