<?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: Local Layer Widget in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776355#M2140</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If you do not have a configs folder under the apps\4\ then you are probably not using version 1.1 of WAB and that is an issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jun 2015 20:03:39 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2015-06-02T20:03:39Z</dc:date>
    <item>
      <title>Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776346#M2131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;I'm having issues trying to figure out how to set up a definition query for the layers that I'm loading into the local layer widget without having to redo the service from the server.&amp;nbsp; Do you have an idea on how this can be done using the local layer widget code?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 14:37:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776346#M2131</guid>
      <dc:creator>DanielStoelb</dc:creator>
      <dc:date>2015-04-21T14:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776347#M2132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; There is not an option for this currently in the widget, but you can add it in code pretty easily.&lt;/P&gt;&lt;P&gt;In the Widget.js file for layer type 'FEATURE' just add these lines:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(layer.hasOwnProperty('definitionExpression')){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lOptions.definitionExpression = layer.definitionExpression;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the json add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;"definitionExpression": "some valid SQL expression",&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need to add to a layer type other than 'FEATURE'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:43:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776347#M2132</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T08:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776348#M2133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the code.&amp;nbsp; That worked.&amp;nbsp; Is it possible to see what it would be for other layer types, such as dynamic?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 16:03:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776348#M2133</guid>
      <dc:creator>DanielStoelb</dc:creator>
      <dc:date>2015-04-21T16:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776349#M2134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'DYNAMIC' would look like this. Add these line right &lt;STRONG&gt;before&lt;/STRONG&gt; "lLayer.on('load',function(evt){"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(layer.definitionExpressions){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var layerDefinitions = [];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.forEach(layer.definitionExpressions, function(_def){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerDefinitions[parseInt(_def.id)] = _def.sql;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lLayer.setLayerDefinitions(layerDefinitions);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the JSON would look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "definitionExpressions": [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {"id": 1, "sql": "ZONE = 'A'"},
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {"id": 6, "sql": "POP00_SQMI &amp;gt;= 6368"}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:43:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776349#M2134</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T08:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776350#M2135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert. I applied a definitionexpression but it does seem to be working. Ideas? Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My service is a feature service and I added this script in widget.js&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;lLayer = new FeatureLayer(layer.url, lOptions);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(layer.hasOwnProperty('definitionExpression')){ &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lOptions.definitionExpression = layer.definitionExpression; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lLayer.on('load',function(evt){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in json:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"url": "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://10.112.5.83/arcgis/rest/services/Biology/CNDDB/MapServer/0" rel="nofollow" target="_blank"&gt;http://10.112.5.83/arcgis/rest/services/Biology/CNDDB/MapServer/0&lt;/A&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;"definitionExpression": [&lt;/P&gt;&lt;P&gt;&amp;nbsp; {"id":0, "sql": "DIST=10"}],&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 18:28:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776350#M2135</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-02T18:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776351#M2136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; The code you are applying is for a Dynamic layer and I see that you are attempting to apply it to a FeatureLayer. You would need to follow my reply that is marked as the answer and not my last reply that was specific to 'DYNAMIC' layer type.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 18:34:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776351#M2136</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-02T18:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776352#M2137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, the widget.js script I posted is indeed from the response marked as answer.&lt;/P&gt;&lt;P&gt;and I changed the json to:&lt;/P&gt;&lt;P&gt;"definitionExpression": "DIST=10",&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but still no filtering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 19:41:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776352#M2137</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-02T19:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776353#M2138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Are you editing the config_Local Layer Widget.json in the &lt;STRONG&gt;[install dir]\server\apps\[app num]\configs\LocalLayer&lt;/STRONG&gt;&lt;STRONG&gt; &lt;/STRONG&gt;folder?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 19:50:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776353#M2138</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-02T19:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776354#M2139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean:&lt;/P&gt;&lt;P&gt;C:\arcgis-web-appbuilder-1.1\server\apps\4\widgets\LocalLayer?&lt;/P&gt;&lt;P&gt;Yes, I do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no configs folder under the app id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 19:55:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776354#M2139</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-02T19:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776355#M2140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If you do not have a configs folder under the apps\4\ then you are probably not using version 1.1 of WAB and that is an issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 20:03:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776355#M2140</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-02T20:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776356#M2141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well that's weird. I downloaded the arcgis-web-appbuilder-1.1.zip file from the website and the filename indicates is the 1.1 version. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you unzip, the buildnum.txt shows the build number as :&lt;/P&gt;&lt;P&gt;2015-03-16_18-39-33_#354 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this the 1.1 version?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 20:14:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776356#M2141</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-02T20:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776357#M2142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Yep that is the right build number and info... But this does not explain why you do not have a configs folder under each of your apps folders once you have saved your project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Example.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/106012_Example.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 20:36:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776357#M2142</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-02T20:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776358#M2143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, this is bizarre. I reinstalled the 1.1 version and still the configs folder is not there!!!!&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/106026_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 23:03:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776358#M2143</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-02T23:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776359#M2144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Did you upgrade you app from a previous version or did you create this app using 1.1?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 00:46:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776359#M2144</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-03T00:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776360#M2145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, everything is new. I just started the migration from flex and I am new on web appbuilder. So, I downloaded the 1.1 from the esri website and create the app.&amp;nbsp; Everything went without a glitch until you made me aware of the missing folder. I am wondering how many other users are missing the folder and don't know about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there another site (like github) that I can download the 1.1 and I will re-create the app to check if the config folder exist?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 14:37:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776360#M2145</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-03T14:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776361#M2146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; So try this&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;start a NEW app in WAB 1.1&lt;/LI&gt;&lt;LI&gt;add an OTB widget (like the Bookmark) and configure the bookmark widget by adding a new bookmark&lt;/LI&gt;&lt;LI&gt;save the app using the save button in the lower left corner of WAB.&lt;/LI&gt;&lt;LI&gt;Check for the configs folder.&lt;/LI&gt;&lt;LI&gt;If that folder does not exist then see if your bookmark you added in step 2 is showing up in the [install Dir]\server\apps\[App Num]\widgets\Bookmark\config_Bookmark.json&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 14:57:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776361#M2146</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-03T14:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776362#M2147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, is there now. I have bookmark widget under the new folder configs and one under the widgets folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I created the other app, I didn't add any widgets and I just installed the LocalLayer by following the instructions. In the LocalLayer instructions there is no mention of the configs folder. By not installing any of the ESRI's widgets, I guess the configs folder will not be created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the instructions for the LocalLayer should reflect the fact that if this is the first widget to be installed, that the configs folder will not be created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if I am mis-reading the situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 18:40:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776362#M2147</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-03T18:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776363#M2148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the short term, I added a note re: the config folder to &lt;A href="https://community.esri.com/migration-blogpost/2580"&gt;Web AppBuilder Developer Edition – Customization Resource List&lt;/A&gt;​&amp;nbsp;&amp;nbsp;&amp;nbsp; This is probably a good thing to point out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 18:58:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776363#M2148</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-06-03T18:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776364#M2149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that there is no LocalLayer folder in the configs folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the steps from the beginning. &lt;/P&gt;&lt;P&gt;1. Install the LocalLayer in the appbuilder 1.1 and performed the json modifications per instructions.&lt;/P&gt;&lt;P&gt;2. Created new app. The LocalLayer widget is visible in the widgets area.&lt;/P&gt;&lt;P&gt;3. Added bookmark widget and saved map. The configs folder is now visible.&lt;/P&gt;&lt;P&gt;4. Customized the LocalLayers to include a feature service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know how to include the LocalLayer in the configs folder to apply Robert's code to implement definitionExpression. Ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 19:35:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776364#M2149</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2015-06-03T19:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Local Layer Widget</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776365#M2150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lefteris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Something is still strange about your install... Here are the steps I follow:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Install the LocalLayer in the appbuilder 1.1 and performed the json modifications and other JS mods per instructions.&lt;/LI&gt;&lt;LI&gt;Created new app. The LocalLayer widget is visible in the widgets area.&lt;/LI&gt;&lt;LI&gt;Set LocalLayer widget to visible and click OK on settings dialog (accepting all defaults).&lt;/LI&gt;&lt;LI&gt;Save the new app&lt;/LI&gt;&lt;LI&gt;Now configs folder has LocalLayer sub folder with config_Local Layer Widget.json in it.&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 19:53:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/local-layer-widget/m-p/776365#M2150</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-06-03T19:53:30Z</dc:date>
    </item>
  </channel>
</rss>

