<?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 the highlight symbol for a selection in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49149#M1388</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to control the highlight symbology for the Search Widget using your instructions found&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/thread/165739"&gt;here&lt;/A&gt;. I now need to do something similar for your Identify Widget, without using popups.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Aug 2017 14:56:29 GMT</pubDate>
    <dc:creator>PatrickThorsell</dc:creator>
    <dc:date>2017-08-08T14:56:29Z</dc:date>
    <item>
      <title>Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49126#M1365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to change the symbol used to highlight a feature that has been clicked on (i.e. to show the popup info)? I can see and edit the symbols live through the debugger, but haven't been able to figure out where to make changes so that they'll be permanent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a related note, is there a preferred location for setting custom css properties to override existing ones? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm currently using Web AppBuilder-Developer's Edition 1.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 18:13:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49126#M1365</guid>
      <dc:creator>NathanielRoth</dc:creator>
      <dc:date>2015-08-12T18:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49127#M1366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nathaniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; You can change the selection symbol in the MapManager.js&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the block of code (line 32, of course you would need to add the SimpleFillSymbol require as well):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;_show2DWebMap: function(appConfig) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //should use appConfig instead of this.appConfig, because appConfig is new.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // if (appConfig.portalUrl) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; var url = portalUrlUtils.getStandardPortalUrl(appConfig.portalUrl);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; agolUtils.arcgisUrl = url + "/sharing/content/items/";
&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; if(!appConfig.map.mapOptions){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; appConfig.map.mapOptions = {};
&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; var mapOptions = this._processMapOptions(appConfig.map.mapOptions) || {};
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapOptions.isZoomSlider = false;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var webMapPortalUrl = appConfig.map.portalUrl;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var webMapItemId = appConfig.map.itemId;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var webMapOptions = {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapOptions: mapOptions,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bingMapsKey: appConfig.bingMapsKey,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; usePopupManager: true
&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; var mapDeferred = jimuUtils.createWebMap(webMapPortalUrl, webMapItemId,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.mapDivId, webMapOptions);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapDeferred.then(lang.hitch(this, function(response) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var map = response.map;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //hide the default zoom slider
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.hideZoomSlider();

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // set default size of infoWindow.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.resize(270, 316);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.fillSymbol = new SimpleFillSymbol();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //var extent;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.itemId = appConfig.map.itemId;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.itemInfo = response.itemInfo;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.webMapResponse = response;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // enable snapping
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var options = {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; snapKey: keys.copyKey
&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; map.enableSnapping(options);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html.setStyle(map.root, 'zIndex', 0);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._publishMapEvent(map);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }), lang.hitch(this, function() {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (this.loading) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.loading.destroy();
&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; topic.publish('mapCreatedFailed');
&amp;nbsp;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:53:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49127#M1366</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T21:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49128#M1367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much, and in case anyone else wants to run with it, here's what I did starting with Robert's hint to make the identified polygons have a red boarder and red tint fill, and points have a red circle with a slightly darker red background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;map.infoWindow.fillSymbol = new SimpleFillSymbol({
&amp;nbsp; "type": "esriSFS",
&amp;nbsp; "style": "esriSFSSolid",
&amp;nbsp; "color": [255,0,0,25],
&amp;nbsp; "outline": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "type": "esriSLS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "style": "esriSLSSolid",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "color": [255,0,0,255],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "width": 2
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp; });
&amp;nbsp; map.infoWindow.markerSymbol = new SimpleMarkerSymbol({
&amp;nbsp; "color": [255,0,0,64],
&amp;nbsp; "size": 15,
&amp;nbsp; "angle": -30,
&amp;nbsp; "xoffset": 0,
&amp;nbsp; "yoffset": 0,
&amp;nbsp; "type": "esriSMS",
&amp;nbsp; "style": "esriSMSCircle",
&amp;nbsp; "outline": {
&amp;nbsp;&amp;nbsp;&amp;nbsp; "color": [255,0,0,255],
&amp;nbsp;&amp;nbsp;&amp;nbsp; "width": 2,
&amp;nbsp;&amp;nbsp;&amp;nbsp; "type": "esriSLS",
&amp;nbsp;&amp;nbsp;&amp;nbsp; "style": "esriSLSSolid"
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp; });&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:53:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49128#M1367</guid>
      <dc:creator>NathanielRoth</dc:creator>
      <dc:date>2021-12-10T21:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49129#M1368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks promising, though does not work in my case as expected (WebAppBuilder 1.2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that all you inserted to MapManager.js to the place Robert referred or was there anything else that you did? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 07:14:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49129#M1368</guid>
      <dc:creator>AveKargaja</dc:creator>
      <dc:date>2015-10-27T07:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49130#M1369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Did you remember to add the proper requires to the MapManager.js for the types of symbols you are using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 13:17:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49130#M1369</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-10-27T13:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49131#M1370</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;This is the most probable reason because I am a beginner codewriter and I must say that I have no idea where to add the requires to the MapManager.js and how they should look like.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 13:32:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49131#M1370</guid>
      <dc:creator>AveKargaja</dc:creator>
      <dc:date>2015-10-27T13:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49132#M1371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; It would look like this (notice the addition of SimpleFillSymbol and SimpleMarkerSymbol):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;define(['dojo/_base/declare',
&amp;nbsp; 'dojo/_base/lang',
&amp;nbsp; 'dojo/_base/array',
&amp;nbsp; 'dojo/_base/html',
&amp;nbsp; 'dojo/topic',
&amp;nbsp; 'dojo/on',
&amp;nbsp; 'dojo/aspect',
&amp;nbsp; 'dojo/keys',
&amp;nbsp; 'esri/dijit/InfoWindow',
&amp;nbsp; "esri/dijit/PopupMobile",
&amp;nbsp; 'esri/InfoTemplate',
&amp;nbsp; 'esri/request',
&amp;nbsp; 'esri/geometry/Extent',
&amp;nbsp; 'esri/geometry/Point',
&amp;nbsp; 'require',
&amp;nbsp; './utils',
&amp;nbsp; './dijit/LoadingShelter',
&amp;nbsp; 'esri/symbols/SimpleFillSymbol',
&amp;nbsp; 'esri/symbols/SimpleMarkerSymbol'
], function(declare, lang, array, html, topic, on, aspect, keys, InfoWindow,
&amp;nbsp; PopupMobile, InfoTemplate, esriRequest, Extent, Point, require,
&amp;nbsp; jimuUtils, LoadingShelter, SimpleFillSymbol, SimpleMarkerSymbol) {&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:53:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49132#M1371</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T21:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49133#M1372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You, Robert, this is just what I needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 13:50:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49133#M1372</guid>
      <dc:creator>AveKargaja</dc:creator>
      <dc:date>2015-10-27T13:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49134#M1373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Coming back to the topic, then this suggested solution works very well on desktop layout, but as soon as the app switches to mobile version, then the highlight symbol is again the defaul "blue". Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 13:16:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49134#M1373</guid>
      <dc:creator>AveKargaja</dc:creator>
      <dc:date>2015-12-18T13:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49135#M1374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; That is because the mobile version uses a different popup and thus you have to set the popup symbology for that popup.&lt;/P&gt;&lt;P&gt;In the MapManager.js&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;resetInfoWindow: function(isNewMap) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(isNewMap){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._mapInfoWindow = this.map.infoWindow;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(this._mapMobileInfoWindow){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._mapMobileInfoWindow.destroy();
&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; this._mapMobileInfoWindow =
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new PopupMobile(null, html.create("div", null, null, this.map.root));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.isMobileInfoWindow = false;
&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; if (window.appInfo.isRunInMobile &amp;amp;&amp;amp; !this.isMobileInfoWindow) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.infoWindow.hide();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.setInfoWindow(this._mapMobileInfoWindow);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.isMobileInfoWindow = true;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else if (!window.appInfo.isRunInMobile &amp;amp;&amp;amp; this.isMobileInfoWindow) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.infoWindow.hide();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.setInfoWindow(this._mapInfoWindow);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.isMobileInfoWindow = false;
&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; this.map.infoWindow.fillSymbol = new SimpleFillSymbol({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "type": "esriSFS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "style": "esriSFSSolid",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "color": [255,0,0,25],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "outline": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "type": "esriSLS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "style": "esriSLSSolid",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "color": [255,0,0,255],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "width": 2
&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; this.map.infoWindow.markerSymbol = new SimpleMarkerSymbol({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "color": [255,0,0,64],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "size": 15,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "angle": -30,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "xoffset": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "yoffset": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "type": "esriSMS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "style": "esriSMSCircle",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "outline": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "color": [255,0,0,255],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "width": 2,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "type": "esriSLS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "style": "esriSLSSolid"
&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; },&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:53:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49135#M1374</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T21:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49136#M1375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You once again, &lt;A href="https://community.esri.com/migrated-users/3101"&gt;Robert Scheitlin, GISP&lt;/A&gt;​ &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 06:51:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49136#M1375</guid>
      <dc:creator>AveKargaja</dc:creator>
      <dc:date>2015-12-21T06:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49137#M1376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this work the same in WAB 2.0? As soon as I add the esri/simple fill symbol to the code and save, the app is blank?? &lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/201849_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2016 23:00:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49137#M1376</guid>
      <dc:creator>LeeAllen</dc:creator>
      <dc:date>2016-05-23T23:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49138#M1377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You are missing the comma behind the&amp;nbsp; './PopupManager', the requires are comma separated list so the app is seeing something after './PopupManager' and does not see a comma and thus this is a syntax error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2016 23:14:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49138#M1377</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-05-23T23:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49139#M1378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Robert, I've been staring at code all day and this was my last endeavor... The thread is exactly what I needed!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 13:14:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49139#M1378</guid>
      <dc:creator>LeeAllen</dc:creator>
      <dc:date>2016-05-24T13:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49140#M1379</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;I have the code working correctly, but need one more adjustment. I have tried fruitlessly this morning to set the fill to 100 % transparent and can't seem to find the correct reference. I tried using "style": "esriSFSNull" which does not seem to work. Here is my current code that still puts a red fill with my updated yellow line (the red fill looks about 50% transparent??).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;map.infoWindow.fillSymbol = new SimpleFillSymbol({&lt;/P&gt;&lt;P&gt;&amp;nbsp; "type": "esriSFS",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "style": "esriSFSSolid",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "color": [0,0,0,0],&lt;/P&gt;&lt;P&gt;&amp;nbsp; "outline": {&lt;/P&gt;&lt;P&gt;&amp;nbsp; "type": "esriSLS",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "style": "esriSLSSolid",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "color": [255,255,51,255],&lt;/P&gt;&lt;P&gt;&amp;nbsp; "width": 5&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="223" src="https://community.esri.com/legacyfs/online/201910_pastedImage_0.png" style="width: 294px; height: 223.232px;" width="294" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 16:03:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49140#M1379</guid>
      <dc:creator>LeeAllen</dc:creator>
      <dc:date>2016-05-24T16:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49141#M1380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lee,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Use:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;"style": "esriSFSNull",&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2016 16:08:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49141#M1380</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-05-24T16:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49142#M1381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, thanks for taking the time to give back to the community! &amp;nbsp;Your responses are always RIGHT on!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 May 2017 18:54:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49142#M1381</guid>
      <dc:creator>ChristopherJohnson1</dc:creator>
      <dc:date>2017-05-12T18:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49143#M1382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;Will these changes work for WAB 2.4?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2017 19:24:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49143#M1382</guid>
      <dc:creator>PatrickThorsell</dc:creator>
      <dc:date>2017-08-07T19:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49144#M1383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Should work just fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2017 19:41:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49144#M1383</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-08-07T19:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Change the highlight symbol for a selection</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49145#M1384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm still getting the default after making the changes.&amp;nbsp;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/365986_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Will this work if pop-ups are disabled? I have simplefillsymbol in my requires.&amp;nbsp;&lt;/P&gt;&lt;P&gt;----&lt;/P&gt;&lt;P&gt;map.infoWindow.resize(270, 316);&lt;BR /&gt; map.infoWindow.fillSymbol = new SimpleFillSymbol({&lt;BR /&gt; "type": "esriSFS",&lt;BR /&gt; "style": "esriSFSNull",&lt;BR /&gt; "color": [255,0,0,255],&lt;BR /&gt; "outline": {&lt;BR /&gt; "type": "esriSLS",&lt;BR /&gt; "style": "esriSLSSolid",&lt;BR /&gt; "color": [255,0,0,255],&lt;BR /&gt; "width": 2&lt;BR /&gt; }&lt;BR /&gt; });&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2017 20:05:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-the-highlight-symbol-for-a-selection/m-p/49145#M1384</guid>
      <dc:creator>PatrickThorsell</dc:creator>
      <dc:date>2017-08-07T20:05:37Z</dc:date>
    </item>
  </channel>
</rss>

