<?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: esearch default filter in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871692#M12925</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On line 13 you have 5,0. What do you mean by 6th configured search layer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Mar 2016 18:50:33 GMT</pubDate>
    <dc:creator>RudoDuncan</dc:creator>
    <dc:date>2016-03-23T18:50:33Z</dc:date>
    <item>
      <title>esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871687#M12920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Is it possible to display the first couple of days of calls for service so that my users can see the last 48hrs by default? Then if they wanted to see something prior to that they can search for it using the filter. Currently, my users have to put in a date filter every time they open the application. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2016 16:59:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871687#M12920</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-22T16:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871688#M12921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; You have two choices:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;You use the url search &lt;A href="http://gis.calhouncounty.org/WAB/V1.3/widgets/eSearch/help/eSearch_Help.htm#GUID-ECDFB290-706C-4609-B74A-4F88B552A73C" title="http://gis.calhouncounty.org/WAB/V1.3/widgets/eSearch/help/eSearch_Help.htm#GUID-ECDFB290-706C-4609-B74A-4F88B552A73C"&gt;Web AppBuilder for ArcGIS | Help - Enhanced Search widget | URL Search&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Or you edit the widget.js to do the search for your once the widget opens.&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2016 17:11:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871688#M12921</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-22T17:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871689#M12922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When the user clicks on the widget I want the last 48hrs to display by default. From there give my users the power to filter whatever they need after that. Where in the widget.js can I put that parameter in?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2016 17:17:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871689#M12922</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-22T17:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871690#M12923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can keep on being your personal programmer &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;. You are going to have to try to do stuff yourself or hire a programmer.&lt;/P&gt;&lt;P&gt;In the Widget.js after line 910 insert this code, where line 14: 5, 0, equals the search layer number (so 5 is the sixth configured search layer) and 0 is the first expression for that layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;//Now execute your default search get the last 48 hours
var d = new Date();
var endTime = locale.format(d, {
&amp;nbsp; selector: "date",
&amp;nbsp; datePattern: "yyyy-MM-dd h:mm:ss a"
});
d.setDate(d.getDate() - 2);
var startTime = locale.format(d, {
&amp;nbsp; selector: "date",
&amp;nbsp; datePattern: "yyyy-MM-dd h:mm:ss a"
});

this._queryFromURL(startTime + '~' + endTime, 5, 0, false);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:54:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871690#M12923</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T10:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871691#M12924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry, I am learning the developer side as I am going along, my apologies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2016 20:10:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871691#M12924</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-22T20:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871692#M12925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On line 13 you have 5,0. What do you mean by 6th configured search layer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:50:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871692#M12925</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-23T18:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871693#M12926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Each search layer that you have configured to be able to search is called a search layer (most being a different url then the others).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 20:23:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871693#M12926</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-23T20:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871694#M12927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I realized that after I've sent the message sorry. I only have one.&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/192926_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 20:32:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871694#M12927</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-23T20:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871695#M12928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14587659883285481 jive_text_macro" data-renderedposition="112_8_1155_16" jivemacro_uid="_14587659883285481"&gt;&lt;P&gt;&lt;SPAN class="keyword" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699;"&gt;this&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;._queryFromURL(startTime + &lt;/SPAN&gt;&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue;"&gt;'~'&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt; + endTime, &lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN class="number" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: green;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN class="keyword" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699;"&gt;false&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;You deleted a 0 for some reason and I made a change to the 4th parameter.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 20:46:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871695#M12928</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-23T20:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871696#M12929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this what is should be?&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193000_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;Also is this how the url search parameters should look like?&lt;/P&gt;&lt;P&gt;&lt;A href="http://phqdevvm08:6024/ppdapp/?cfssearch=2014-11-10~2014-11-17" title="http://phqdevvm08:6024/ppdapp/?cfssearch=2014-11-10~2014-11-17"&gt;devvm08:6024/ppdapp/?cfssearch=2014-11-10~2014-11-17&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 18:31:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871696#M12929</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-24T18:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871697#M12930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;looks good&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 18:59:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871697#M12930</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-24T18:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871698#M12931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I refreshed my browser and clicked on my widget and noting happened. I am sure that I am missing something silly here. I am a novice javascript developer. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 19:13:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871698#M12931</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-24T19:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871699#M12932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; actually the code above looks good but the placement does NOT. It looks like line 910 for you placed the code inside the _removeResultItem function. This is not the correct place for it. Remove that code from there an scroll up and fin the comment "//now check if there is a url search to do" and count that line and down 27 line. The next line after 27th should be: "if(this.serviceFailureNames.length &amp;gt; 0){". Right above "if(this.serviceFailureNames.length &amp;gt; 0){" is where you need to place the code. This is the issue with providing line numbers to code that on your end I am not sure what version or changes you have made.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 19:28:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871699#M12932</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-24T19:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871700#M12933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not providing the line number confused me a little. Would this help?&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193088_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 16:00:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871700#M12933</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-25T16:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871701#M12934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Our line numbers are quite different. Where you need to add the code is NOT in the &lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;_removeResultItem function. It is in the _initLayerSelect function. Where you need to put it is before the line numbers you show above. What you need to do is search for this text "if(this.serviceFailureNames.length &amp;gt; 0){" it should only occur once in your code and you need to add the code we are talking about right above that line.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 16:09:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871701#M12934</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-25T16:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871702#M12935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe I pasted the code in the right spot and still nothing happened.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193089_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 21:52:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871702#M12935</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-25T21:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871703#M12936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Is your browsers web console showing any errors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2016 20:21:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871703#M12936</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-26T20:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871704#M12937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like this is the only error that I am getting.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193217_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;I've attach my Widget.js of my cfsSearch folder. If you get a chance to look at the code, maybe you can spot something that I am not seeing. Thanks again Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 14:50:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871704#M12937</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-28T14:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871705#M12938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rudo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Nothing is jumping out, beside you still had the code added to the _removeResultItem function which would eventually cause an issue.&amp;nbsp; Please attach your whole cfssearch widget folder as it looks like you have errors in other files in your widget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 15:13:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871705#M12938</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-03-28T15:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: esearch default filter</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871706#M12939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here it is. Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 15:21:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/esearch-default-filter/m-p/871706#M12939</guid>
      <dc:creator>RudoDuncan</dc:creator>
      <dc:date>2016-03-28T15:21:33Z</dc:date>
    </item>
  </channel>
</rss>

