Overall
This function uses one or more field values to create a custom description for a record.
Method Call
FCF.updateRecordDescription(descriptionString, {options});
Parameters/Options

"Incident report on {{.incidentDate}} at {{#incidentLocation}}"

Examples
FCF.updateRecordDescription(‘Incident report on {{.incidentDate}}’);
FCF.updateRecordDescription(‘Incident report on {{.incidentDate}} at {{#incidentLocation}}’, {defaultValues: {‘.incidentDate’: ‘no specified date’, ‘#incidentLocation’: ‘no specified location’} });
FCF.updateRecordDescription(‘Incident report on {{.incidentDate}} at {{#incidentLocation}}’, { defaultValues: { ‘.incidentDate’: ‘no specified date’, ‘#incidentLocation’: ‘no specified location’ }, showToast: false });
FCF.updateRecordDescription(‘Incident report on {{.incidentDate}} at {{#incidentLocation}}’, { defaultValues: { ‘.incidentDate’: ‘no specified date’, ‘#incidentLocation’: ‘no specified location’ }, successToast: ‘:)’, failToast: ‘:(‘ });
This document will walk you through how you can use the clevr Form Editor to configure show/hide...
This document will address how to restrict date pickers, how to specify the length between them in terms of days, how to prevent users from picking dates which aren’t congruent with the specified length, and how to throw errors/a warning to the user...
This document will walk you through how you can update a dropdown style notification...