New user ramping up my learning. Having problems with a pushing data from a data table to a form.
Building a data form where I can do CRUD operations on a record set. The page has a data table (top) which, with a record selected, will populate the form (by setting the data model to the form using the “On Record Selected” action).
The form has input fields and select fields (to be used if user needs to change the selection), with each column name of the data table connected using the the “Value Logic” field. Select fields are used for specific choice selection (to be used if user needs to change the selection), and are populated using “On Page Enter” action.
My problem is that the Team field (a select field) comes over fine (data is transferred from the data table fine. The Incident Type and Misconduct Applied fields (both select fields) will not read and show the data from the table.
Here’s the reason why the Misconduct Applied select is not showing a value for the selected record:
The Misconduct Applied select component has the following labels/values. Specifically, notice the values are objectIds from the list_IndidentsMisconduct table:
As you can see, it is just a string, the same string that is used for labels in that select component. The values corresponding to the labels must be objectIds (see the first screenshot at the top of my response).