<?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: WAB Developer Addition - Getting Related Objects to work without having tables in Layer List? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108856#M3200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; To exclude all tables you go to the LayerList widget folder and open the LayerListView.js and comment out the getTableInfoArray portion of the postCreate function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;postCreate: function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.forEach(this.operLayerInfos.getLayerInfoArray(), function(layerInfo) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.drawListNode(layerInfo, 0, this.layerListTable, true);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, this);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*array.forEach(this.operLayerInfos.getTableInfoArray(), function(layerInfo) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.drawListNode(layerInfo, 0, this.tableListTable, true);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, this);*/
&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 06:33:33 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2021-12-11T06:33:33Z</dc:date>
    <item>
      <title>WAB Developer Addition - Getting Related Objects to work without having tables in Layer List?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108855#M3199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an application and services that contain related objects.&amp;nbsp; Is there a way to have the related objects work without having the related objects as tables in the layer list?&amp;nbsp; How can I hide these tables and still have the related objects work.&amp;nbsp; I have had some end user raise concerns about the tables being visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have any ideas?&amp;nbsp; Here is a sample:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/198015_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 16:18:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108855#M3199</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2016-05-03T16:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Developer Addition - Getting Related Objects to work without having tables in Layer List?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108856#M3200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; To exclude all tables you go to the LayerList widget folder and open the LayerListView.js and comment out the getTableInfoArray portion of the postCreate function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;postCreate: function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.forEach(this.operLayerInfos.getLayerInfoArray(), function(layerInfo) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.drawListNode(layerInfo, 0, this.layerListTable, true);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, this);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /*array.forEach(this.operLayerInfos.getTableInfoArray(), function(layerInfo) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.drawListNode(layerInfo, 0, this.tableListTable, true);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, this);*/
&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:33:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108856#M3200</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T06:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Developer Addition - Getting Related Objects to work without having tables in Layer List?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108857#M3201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, you are the man!&amp;nbsp; I just did commented out those line and that works!&amp;nbsp; Perfect!&amp;nbsp; Also, my related objects still works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/198071_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, does WAB support related objects on related objects?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is.. I have a feature such as a traffic pole, the traffic pole then has a mast arm as a related object.&amp;nbsp; The mast arm then has a signal head as a related object, the signal head has an LED as a related object.&amp;nbsp; Can I drill down that far to get that information from a Popup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for the feedback.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 16:52:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108857#M3201</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2016-05-03T16:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Developer Addition - Getting Related Objects to work without having tables in Layer List?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108858#M3202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I actually don't know the answer to that one. I have not tried.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to mark this thread as answered by clicking on the "Correct Answer" link on the thread that answered your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 16:57:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-developer-addition-getting-related-objects-to/m-p/108858#M3202</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-05-03T16:57:24Z</dc:date>
    </item>
  </channel>
</rss>

