I have a form that serves as both an initial creation of a record or as to allow for additional information to be added/edited to a record.
The form will load when either a create new button is clicked or a record is selected in a table component.
The problem I am running into is that there are a couple of fields that should be populated with basic information from the table when editing a record and other basic information when creating a new one.
Here is the code, for example for the Start Date field:
{{gcm_member_table.selectedRow != null? gcm_member_table.selectedRow.start_date:moment()}}
And the code for birthday is:
{
{{gcm_member_table.selectedRow != null? gcm_member_table.selectedRow.birthday:'2001-01-01'}}
Sometimes this information populates and sometimes it doesn't for end users. So my question is what could be the reason? Browser, device, etc?s