getRecord()

Returns Ab.data.Record object containing all row field values as JavaScript objects.

Parameters: none

Example:

Get selected row as a record and retrieve the user name field from the record:

var record = row.getRecord();
this.userName = record.getValue('afm_users.user_name');
this.userProcessGrid.appendTitle(this.userName);