I would like to create a new custom tab in the AEM page properties. The process of creating a page property is straightforward, but inside the custom tab, I want to make a call to an external system and get a json response, so that I can build a dialog (with text fields and path fields). To get the json response, I created a servlet, but I want to call this servlet each time a property dialog appears and populate its fields. Would it be possible to do that? Should I update dialog.xml for this or can I manage it directly at the page level (/content)?
Please share me some best practices on this use cases.
Do you wanna have a drop-down field in the dialog with dynamic values?
If yes, you'll need to do three things:
In your Dialog
Here you're adding a select field as we are used to, but instead of we add the option, we are calling this component to populate the select. Noticed that we need a folder called datasource and an HTML file with the same name inside this folder.
In your components
datasource.html
In the component, you only need to have the HTML file, it's not necessary to create a .content.xml.
In your Models (Java Backend)
As you can see, you can either call an external service in the backend or use some information that is in the JCR.
Obs.: You also can use WCMUsePojo API, for old projects is the only one option and this case, your model will be like this one below
Good luck!