For some reason, my foreign key fields in data sources are not coming through to Visual Builder.
I am definitely missing something. I do not see a Data Binding set of properties, nor an optionDataSource property for any form item from dropping the Community datasource. This is also true of dynamicform fields I drop to get selectItems or comboboxes to hook up.
Below are the form fields with foreign key declarations. They use the following Foreign Key entries in the Community datasource.
License.LICENSEID
PrintTemplate.PRINTTEMPLATEID
PrintTemplate.PRINTTEMPLATEID
PrintTemplate.PRINTTEMPLATEID
I am definitely missing something. I do not see a Data Binding set of properties, nor an optionDataSource property for any form item from dropping the Community datasource. This is also true of dynamicform fields I drop to get selectItems or comboboxes to hook up.
Below are the form fields with foreign key declarations. They use the following Foreign Key entries in the Community datasource.
License.LICENSEID
PrintTemplate.PRINTTEMPLATEID
PrintTemplate.PRINTTEMPLATEID
PrintTemplate.PRINTTEMPLATEID
Code:
<DynamicForm numCols="10" dataSource="ref:Community" ID="CommunityDetailForm" autoDraw="false"> <fields> . . . <FormItem type="text" name="LICENSEID" title="License" constructor="TextItem"/> <FormItem name="DEFAULTAGENDATEMPLATEID" title="Agenda Template" constructor="TextItem"/> <FormItem name="DEFAULTMINUTESTEMPLATEID" title="Minutes Template" constructor="TextItem"/> <FormItem name="DEFAULTREPORTTEMPLATEID" title="Report Template" constructor="TextItem"/> . . . </fields> <titleOrientation>left</titleOrientation> <wrapItemTitles>true</wrapItemTitles> <validateOnChange>true</validateOnChange> <autoFetchData>true</autoFetchData> </DynamicForm>
Comment