Thanks for the code snippet.I tried this code already; the callback function was not getting called. It seems like either an unsupported API with a 4th parameter, or has since been deprecated.The Adobe documentation does not indicate support for a callback function.I am using AEM v6.4.5
The returned JSON is abstracted away from me as I am using the Adobe guidelib.dataIntegrationUtils libraries. The returned JSON is not available to use when binding to a drop-down list.
Yes, the Option text and value need to be different. The text needs to be sorted alphabetically, whereas the Option value represents the Entity ID (guid).
I am using AEM Forms and connecting form elements to Microsoft Dynamics 365.I use the Form Data Model to create API endpoints to connect with the specific Dynamics 365 entities I am interested in.The problem I am facing is that the data returned from a Dynamics 365 entity is not in the order I requi...
Here is the final code hat works in the drop-down list initialization:------------------------------------------------------------------------------------------var operationInfo = { "formDataModelId": "/content/dam/formsanddocuments-fdm/ms-dynamics-fdm", "operationTitle": "GET salutation /salu...
I use the Visual Editor to bind the list once.Seems like the below should work in the Code Editor data-bindingif(languageParameter='en') {var operationInfo = { "formDataModelId": "/content/dam/formsanddocuments-fdm/ms-dynamics-fdm", "operationTitle": "GET salutation /salutations", "operatio...
I am binding a drop-down list to an Entity in MS Dynamics. The data is just reference look-up data. I need to fetch either the English or French data from the Entity based on the language the user selects in the User Interface. e.g. list of countries in either English or FrenchIn the Forms editor, w...