<?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: Change or remove selection color? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107131#M9931</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leroy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; That is the exact needed course of action.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Sep 2016 15:45:20 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2016-09-15T15:45:20Z</dc:date>
    <item>
      <title>Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107117#M9917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to change or remove the outline color when querying/selecting a feature? We have invisible polygons (no fill or outline color) which we want the user to be able to query and get a popup from in our web map. However, we don’t want the polygon to get selected with the default cyan color, since they are meant to be invisible. The map is an ArcGIS Online web map which is presented in a story map template, which we have downloaded to our web server. There is no “query”- or “onClick”-call in the js-code for the story map template, so we don’t know what to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 15:04:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107117#M9917</guid>
      <dc:creator>StaffanstorpsKommun</dc:creator>
      <dc:date>2014-11-13T15:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107118#M9918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Staffanstrops,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; To change the color of the selection you would set the fillsymbol or the linesymbol of the popup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14158939762295038" jivemacro_uid="_14158939762295038" modifiedtitle="true"&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //initialize popup window&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var popup = new esri.dijit.Popup({&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fillSymbol: new esri.symbol.SimpleFillSymbol(esri.symbol.SimpleFillSymbol.STYLE_SOLID, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([255,0,0]), 2), new dojo.Color([255,255,0,0.25]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, dojo.create("div"));&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also find out how to disable the selection in the popup documentation.&lt;/P&gt;&lt;P&gt;Here is the documentation reference:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/jsapi/popup-amd.html" title="https://developers.arcgis.com/javascript/jsapi/popup-amd.html"&gt;popup-amd | API Reference | ArcGIS API for JavaScript&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 15:54:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107118#M9918</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2014-11-13T15:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107119#M9919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, much simpler than we expected &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;! Thanks Robert!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 16:24:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107119#M9919</guid>
      <dc:creator>StaffanstorpsKommun</dc:creator>
      <dc:date>2014-11-13T16:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107120#M9920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do I just create the popup after I create the map, or do I assign it to a featurelayer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2016 19:23:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107120#M9920</guid>
      <dc:creator>MarcBate</dc:creator>
      <dc:date>2016-06-03T19:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107121#M9921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Just use map.infowidow.fillSymbol = x;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2016 01:46:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107121#M9921</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-04T01:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107122#M9922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having this same issue. &amp;nbsp;What folder or file contains the "&lt;/P&gt;&lt;OL class="" start="1" style="color: #5c5c5c; background-color: #ffffff; border: none; font-size: 12px; margin: 0px 0px 1px 45px !important;"&gt;&lt;LI class="" style="color: inherit; background-color: #ffffff; border-top: none; border-bottom: none; border-left: 3px solid #6ce26c; border-right: none; font-weight: inherit; font-size: 12px; margin: 0px !important; padding: 0px 3px 0px 10px !important;"&gt;&lt;SPAN style="color: black; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;//initialize&amp;nbsp;popup&amp;nbsp;window&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI class="" style="color: #5c5c5c; background-color: #f6f6f6; border-top: none; border-bottom: none; border-left: 3px solid #6ce26c; border-right: none; font-weight: inherit; font-size: 12px; margin: 0px !important; padding: 0px 3px 0px 10px !important;"&gt;&lt;SPAN style="color: black; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="" style="color: #0088e1; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;var&lt;/SPAN&gt;&amp;nbsp;popup&amp;nbsp;=&amp;nbsp;&lt;SPAN class="" style="color: #0088e1; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;new&lt;/SPAN&gt;&amp;nbsp;esri.dijit.Popup({&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI class="" style="color: inherit; background-color: #ffffff; border-top: none; border-bottom: none; border-left: 3px solid #6ce26c; border-right: none; font-weight: inherit; font-size: 12px; margin: 0px !important; padding: 0px 3px 0px 10px !important;"&gt;&lt;SPAN style="color: black; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fillSymbol:&amp;nbsp;&lt;SPAN class="" style="color: #0088e1; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;new&lt;/SPAN&gt;&amp;nbsp;esri.symbol.SimpleFillSymbol(esri.symbol.SimpleFillSymbol.STYLE_SOLID,&amp;nbsp;&lt;SPAN class="" style="color: #0088e1; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;new&lt;/SPAN&gt;&amp;nbsp;esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID,&amp;nbsp;&lt;SPAN class="" style="color: #0088e1; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;new&lt;/SPAN&gt;&amp;nbsp;dojo.Color([&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;255&lt;/SPAN&gt;,&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;0&lt;/SPAN&gt;,&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;0&lt;/SPAN&gt;]),&amp;nbsp;&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;2&lt;/SPAN&gt;),&amp;nbsp;&lt;SPAN class="" style="color: #0088e1; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;new&lt;/SPAN&gt;&amp;nbsp;dojo.Color([&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;255&lt;/SPAN&gt;,&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;255&lt;/SPAN&gt;,&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;0&lt;/SPAN&gt;,&lt;SPAN class="" style="color: green; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;0.25&lt;/SPAN&gt;]))&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI class="" style="color: #5c5c5c; background-color: #f6f6f6; border-top: none; border-bottom: none; border-left: 3px solid #6ce26c; border-right: none; font-weight: inherit; font-size: 12px; margin: 0px !important; padding: 0px 3px 0px 10px !important;"&gt;&lt;SPAN style="color: black; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&amp;nbsp;dojo.create(&lt;SPAN class="" style="color: blue; background-color: inherit; border: 0px; font-weight: inherit; font-size: 9pt !important;"&gt;"div"&lt;/SPAN&gt;));&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;as shown earlier. &amp;nbsp;I am using the out of the box Search and want the item found to just be highlighted with no fill covering the location.&lt;/P&gt;&lt;P&gt;I've looked int the Config for the Search and Selection widgets, but do not see the popup file.&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, 13 Sep 2016 22:03:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107122#M9922</guid>
      <dc:creator>LeroyChristophersen</dc:creator>
      <dc:date>2016-09-13T22:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107123#M9923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leroy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OK, I see the issue is you are asking about WAB but you are in the native JS API space. Your question is better placed and already answered in the WAB space.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/165739"&gt;https://community.esri.com/thread/165739&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 23:50:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107123#M9923</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-09-13T23:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107124#M9924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That takes care of what I needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leroy A. Christophersen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sent from my Wireless smartphone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2016 00:06:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107124#M9924</guid>
      <dc:creator>LeroyChristophersen</dc:creator>
      <dc:date>2016-09-14T00:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107125#M9925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checkedout the answer link.  Is there a better tool for reviewing and editing the .js file other than notepad++?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using notepad++ lines of code run together.  Most of the other languages, it works quite nicely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leroy A. Christophersen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sent from my Wireless smartphone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2016 23:52:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107125#M9925</guid>
      <dc:creator>LeroyChristophersen</dc:creator>
      <dc:date>2016-09-14T23:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107126#M9926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;Leroy,&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp; The only reason the code wold be running together in Notepad++ is you are trying to edit minified code (I.e. code downloaded from AGOLs WAB). If you want to make code changes you really need to get WAB Dev and start from there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 01:18:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107126#M9926</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-09-15T01:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107127#M9927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like &lt;A class="link-titled" href="http://brackets.io/" title="http://brackets.io/"&gt;Brackets - A modern, open source code editor that understands web design.&lt;/A&gt;&amp;nbsp;&amp;nbsp; which was originally suggested by you Robert.&amp;nbsp; But Notepad works for me too.....but refer to Robert's comment re: the minified.&amp;nbsp; as Robert knows best.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 01:28:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107127#M9927</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2016-09-15T01:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107128#M9928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the Developer and am familiar with getting under the hood.  However, recently I have had trouble with the workflow of AGOL integrating with developer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a recommended tutorial that goes through the best practices of using the Data from ArcGIS desktop/AGOL into developer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, I know you hear this and sometimes the dialogues or demands must be HUGE, but thanks for your expertise and sharing of your knowledge.  The GIS world is fortunate to have you and people like you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leroy A. Christophersen&lt;/P&gt;&lt;P&gt;South Feather Water &amp;amp; Power Agency&lt;/P&gt;&lt;P&gt;2310 Oro Quincy Hwy&lt;/P&gt;&lt;P&gt;Oroville, CA 95966&lt;/P&gt;&lt;P&gt;530-534-2235&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 15:20:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107128#M9928</guid>
      <dc:creator>LeroyChristophersen</dc:creator>
      <dc:date>2016-09-15T15:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107129#M9929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leroy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;So I am a little confused then. If you have developer, is this app you are attempting to edit, did you start it in developer or AGOL?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as tutorial, not really. If you have developer you should just start a new app and select a webmap from your AGOL account that has the layers you want and then you can get into the Search Widget.js to edit the selection color.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 15:28:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107129#M9929</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-09-15T15:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107130#M9930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This application was started on AGOL and then downloaded to be hosted on site.  Since it's creation, several staff members have asked for modifications, such as the selection style, color and such.  So as a result, I have been modifying it to meet the needs, thus the conflict or confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sounds like the best solution is to recreate the map within Developer, since it can't be downloaded into Developer, and then make the under-the-hood changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leroy A. Christophersen&lt;/P&gt;&lt;P&gt;South Feather Water &amp;amp; Power Agency&lt;/P&gt;&lt;P&gt;2310 Oro Quincy Hwy&lt;/P&gt;&lt;P&gt;Oroville, CA 95966&lt;/P&gt;&lt;P&gt;530-534-2235&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 15:34:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107130#M9930</guid>
      <dc:creator>LeroyChristophersen</dc:creator>
      <dc:date>2016-09-15T15:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107131#M9931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leroy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; That is the exact needed course of action.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2016 15:45:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107131#M9931</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-09-15T15:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107132#M9932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Hi Robert,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;I am into WAB Developer, but cannot find the .js that controls the color or transparency of the Search results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;When a search is performed, the found feature is selected, outlined and shaded into a rust color overlay.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;I’ve checked the Widget.js in the search folder and the CSS folder as well. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Sincerely,&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2016 19:36:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107132#M9932</guid>
      <dc:creator>LeroyChristophersen</dc:creator>
      <dc:date>2016-09-28T19:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107133#M9933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leroy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Refer to this thread in the WAB space:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/163700"&gt;https://community.esri.com/thread/163700&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2016 19:56:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107133#M9933</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-09-28T19:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107134#M9934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So disabling the selection/removing highlight is only possible in the developer environment as far as I have noticed.&amp;nbsp; This is still correct right?&amp;nbsp; I notice the Information Lookup template has it disabled, but I was attempting to do it in the web app builder on arcgis.com without any luck.&amp;nbsp; Guessing still need to set up a development/hosting environment off of arcgis online then.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2017 14:26:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107134#M9934</guid>
      <dc:creator>BrianDudek</dc:creator>
      <dc:date>2017-03-30T14:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107135#M9935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2017 14:31:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107135#M9935</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-03-30T14:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Change or remove selection color?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107136#M9936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey folks I need exactly this solution, but solved in the new ArcGIS JS API 4.15 - would be glad if anybody can help me out with this task! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2020 11:19:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-or-remove-selection-color/m-p/107136#M9936</guid>
      <dc:creator>ChristianBischof</dc:creator>
      <dc:date>2020-05-15T11:19:08Z</dc:date>
    </item>
  </channel>
</rss>

