Select to view content in your preferred language

Custom Widget with multiple Output Data Sources

418
1
Jump to solution
08-25-2025 11:49 PM
Labels (1)
OlafEinspanier
New Contributor

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?

1 Solution

Accepted Solutions
YueyangLi
Esri Contributor

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
  }
}

 

View solution in original post

0 Kudos
1 Reply
YueyangLi
Esri Contributor

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
  }
}

 

0 Kudos