<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DataSourceComponent with two or more Datasources in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1685730#M22517</link>
    <description>&lt;P&gt;This is great, but it's the only reference I can find for "MultipleDataSourceComponent". I don't see any documentation on developers.arcgis.com. I see it in code and can plug my way through using it. Is this missing documentation or should I take it's lack of documentation as a sign to avoid using "MultipleDataSourceComponent" and simply use multiple "DataSourceComponents" and a logic gate to sense once they've all loaded their data source?&lt;/P&gt;</description>
    <pubDate>Sat, 21 Feb 2026 06:26:31 GMT</pubDate>
    <dc:creator>youknowww</dc:creator>
    <dc:date>2026-02-21T06:26:31Z</dc:date>
    <item>
      <title>DataSourceComponent with two or more Datasources</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1217772#M5419</link>
      <description>&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;I'm developing a custom widget with a list which contains values from a feature class and a table mixed together for each row. The table and the feature class has a common id. Because the feature class und and table are branch are versioned I can't do a join in the FeatureService. So I have to join the feature class and table in the custom widet. Is there way to create a custom datasource which contains the joined data from the datasources defined in setting.tsx. An other ideas was to pass two datasources to the DataSourceComponent. Does any one has experiences with this?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 08:00:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1217772#M5419</guid>
      <dc:creator>Zoggo</dc:creator>
      <dc:date>2022-09-30T08:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: DataSourceComponent with two or more Datasources</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1245540#M5987</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/485664"&gt;@Zoggo&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You can use MultipleDataSourceComponent or two DataSourceComponent. To use MultipleDataSourceComponent -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;import { MultipleDataSourceComponent } from 'jimu-core'
...

&amp;lt;MultipleDataSourceComponent
  useDataSources={props.useDataSources}
  onDataSourceCreated={onDataSourceCreated} // (dss: { [dataSourceId: string]: DataSource }) =&amp;gt; void
  onDataSourceInfoChange={onDataSourceInfoChange} // (infos: { [dataSourceId: string]: IMDataSourceInfo }) =&amp;gt; void
  queries={getQueries(useDataSources)} // { [dataSourceId: string]: QueryParams }
  widgetId={props.widgetId}
/&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 10:08:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1245540#M5987</guid>
      <dc:creator>YueyangLi</dc:creator>
      <dc:date>2023-01-05T10:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: DataSourceComponent with two or more Datasources</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1685730#M22517</link>
      <description>&lt;P&gt;This is great, but it's the only reference I can find for "MultipleDataSourceComponent". I don't see any documentation on developers.arcgis.com. I see it in code and can plug my way through using it. Is this missing documentation or should I take it's lack of documentation as a sign to avoid using "MultipleDataSourceComponent" and simply use multiple "DataSourceComponents" and a logic gate to sense once they've all loaded their data source?&lt;/P&gt;</description>
      <pubDate>Sat, 21 Feb 2026 06:26:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1685730#M22517</guid>
      <dc:creator>youknowww</dc:creator>
      <dc:date>2026-02-21T06:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: DataSourceComponent with two or more Datasources</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1686460#M22545</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/781478"&gt;@youknowww&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Using MultipleDataSourceComponent can cause performance and rendering issues, which is why it is not officially documented.&lt;/P&gt;&lt;P&gt;For example, it may wait for all data sources to be created before rendering, even though the widget could render partially as each data source becomes ready. Using multiple DataSourceComponent instances is usually a better approach. A typical example is the Table widget, where each tab can be shown as soon as its data source is ready.&lt;/P&gt;&lt;P&gt;In the original question, there are only two data sources, and both are required for the join. In this case, using MultipleDataSourceComponent seems reasonable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2026 02:29:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/datasourcecomponent-with-two-or-more-datasources/m-p/1686460#M22545</guid>
      <dc:creator>YueyangLi</dc:creator>
      <dc:date>2026-02-25T02:29:55Z</dc:date>
    </item>
  </channel>
</rss>

