selectRecord()
Last updated 12/02/2025
Example
The following code selects the form action and the associated record and displays it to the user.
Selects the Customers form action and the associated record
function SelectCustomerRecord(five: Five, context: any, result: FiveError) : FiveError {
five.selectRecord('Customers', five.field.Customer);
return five.success(result);
}
js title=
function SelectCustomerRecord(five, context, result) {
five.selectRecord('Customers', five.field.Customer);
return five.success(result);
}