We are developing a custom widget for Experince Builder 1.17. The widget reads data from a web service. The data consist of five tables. I tried to make the data availabe to other widgets as five output datasources of the custom widget. When watched in the debugger, everything seems to work. But Experince Builder only shows the first output data source in the Select Data dialog, so I can't select the others. Is there a way to make the Select Data dialog show all output data sources? Or is it limited to one?
Solved! Go to Solution.
Hi @OlafEinspanier ,
Adding the following property to your manifest.json should solve the issue. https://developers.arcgis.com/experience-builder/api-reference/jimu-core/WidgetManifestProperties/#c...
{
"properties": {
"canGenerateMultipleOutputDataSources": true
}
}
Hi @OlafEinspanier ,
Adding the following property to your manifest.json should solve the issue. https://developers.arcgis.com/experience-builder/api-reference/jimu-core/WidgetManifestProperties/#c...
{
"properties": {
"canGenerateMultipleOutputDataSources": true
}
}