<?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: TOC - Arrows instead of plus sign to expand TOC in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715430#M66496</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Are you referencing the TOC.css in your app?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;link rel="stylesheet" href="agsjs/dijit/css/toc.css"&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 19:18:56 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2016-06-16T19:18:56Z</dc:date>
    <item>
      <title>TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715421#M66487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to replace the plus '+' sign with an arrow for the opening and closing of an item in the TOC.&amp;nbsp; Also, I want to put the arrow to the left of the checkbox.&amp;nbsp; How can I do this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:11:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715421#M66487</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-15T19:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715422#M66488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian what TOC are you referring too? Can you post a link to some script? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 20:03:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715422#M66488</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2016-06-15T20:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715423#M66489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rickey, I am using nliu's TOC widget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 12:23:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715423#M66489</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-16T12:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715424#M66490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sure you can do that if you modify the TOC.js and the TOC.css files&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the TOC.js make this change to the templateString (to move the expand icon to the left of the checkbox):&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;templateString: '&amp;lt;div class="agsjsTOCNode"&amp;gt;' +
&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;div data-dojo-attach-point="rowNode" data-dojo-attach-event="onclick:_onClick"&amp;gt;' +
&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;span data-dojo-attach-point="contentNode" class="agsjsTOCContent"&amp;gt;' +
&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;img src="${_blankGif}" alt="" data-dojo-attach-point="iconNode" /&amp;gt;' +
&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;span data-dojo-attach-point="checkContainerNode"&amp;gt;&amp;lt;/span&amp;gt;' +
&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;span data-dojo-attach-point="labelNode"&amp;gt;' +
&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;' +
&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;div data-dojo-attach-point="containerNode" style="display: none;"&amp;gt; &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;',&lt;/PRE&gt;&lt;P&gt;and add this css rule to the TOC.css:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.claro .dijitTreeExpando {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-image: url("images/treeExpandImages.png") !important;
&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 16px;
&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 16px;
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-position: -35px 0;
}&lt;/PRE&gt;&lt;P&gt;and Add an images folder to the agsjs\dijit\css folder and then save this image into it:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="207969" alt="treeExpandImages.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/207969_treeExpandImages.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:38:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715424#M66490</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T06:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715425#M66491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert, I'm almost there.&amp;nbsp; I did exactly what you said, but am still getting the '+' and '-' images to toggle the laters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 17:38:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715425#M66491</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-16T17:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715426#M66492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tested this on my end so I know it works. Did you &lt;SPAN style="text-decoration: underline;"&gt;add an images&lt;/SPAN&gt; folder to the agsjs\dijit\css folder?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 17:42:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715426#M66492</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-16T17:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715427#M66493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got it to work with the image for the arrows to show.&amp;nbsp; When I expand a layer, is the arrow supposed to change to the right pointing arrow ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 18:47:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715427#M66493</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-16T18:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715428#M66494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brain,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; it is right for expand and down for collapse&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled-1.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/208010_Untitled-1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:05:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715428#M66494</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-16T19:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715429#M66495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm just getting the down arrows whether the layer is expanded or collapsed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:16:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715429#M66495</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-16T19:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715430#M66496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Are you referencing the TOC.css in your app?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;link rel="stylesheet" href="agsjs/dijit/css/toc.css"&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:18:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715430#M66496</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-16T19:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715431#M66497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, I changed the code to : &lt;SPAN style="color: #666666; font-family: 'Helvetica','sans-serif'; font-size: 10.5pt;"&gt;&amp;lt;link rel="stylesheet" href="agsjs/dijit/css/toc.css"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: 'Helvetica','sans-serif'; font-size: 10.5pt;"&gt;this is what my .html page looks like :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: 'Helvetica','sans-serif'; font-size: 10.5pt;"&gt;&lt;IMG __jive_id="207916" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/207916_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then further down, I add a reference to TOC.js : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" height="397" src="https://community.esri.com/legacyfs/online/208019_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" width="958" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:20:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715431#M66497</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-16T19:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715432#M66498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brain,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; That is pretty weird. Can you show me your TOC.css where you added the new rule?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:43:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715432#M66498</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-16T19:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715433#M66499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's TOC.css :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/208022_pastedImage_2.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and here's TOC.js :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/208021_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:47:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715433#M66499</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-16T19:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715434#M66500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Everything looks fine. Can you zip-up the whole thing and attach it for review?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 20:54:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715434#M66500</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-16T20:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715435#M66501</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;            Do you want me to send the zipped file to this email ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian Foley&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 13:15:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715435#M66501</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-20T13:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715436#M66502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Yes if you use the advanced editor you will have the ability to attach files to this thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 13:18:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715436#M66502</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-20T13:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715437#M66503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Here's the zipped file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 13:23:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715437#M66503</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-20T13:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715438#M66504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Add this css rule right after the other you added:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.claro .dijitTreeExpandoClosed {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; background-position: 1px 0;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 14:18:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715438#M66504</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-06-20T14:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: TOC - Arrows instead of plus sign to expand TOC</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715439#M66505</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks, that did it.&amp;nbsp;&amp;nbsp; Another question I have is related to the image below.&amp;nbsp; It is from a WPF Browser Application I was playing with.&amp;nbsp; I wanted to create something similar in javascript.&amp;nbsp; Along the top of the map, I have a feature called 'Identify Tools' which when selected drops down a menu with the tools available.&amp;nbsp; Is it possible to do this in javascript ?&amp;nbsp; I've been looking at the examples on developers.arcgis.com (javascript) and haven't seen anything similar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="208300" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/208300_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 14:42:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/toc-arrows-instead-of-plus-sign-to-expand-toc/m-p/715439#M66505</guid>
      <dc:creator>BrianFoley1</dc:creator>
      <dc:date>2016-06-20T14:42:43Z</dc:date>
    </item>
  </channel>
</rss>

