<?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: esri.bundle problem since 3.4 in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353379#M32739</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;yes it looks like the properties can't be set directly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried redefining the property with code similar to &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/81356-quot-esri-toolbars-Draw-quot-and-multipleDefine-Error-in-API-v.3.4?highlight=bundle+strings"&gt;this&lt;/A&gt;&lt;SPAN&gt; thread using &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/frc64/"&gt;this&lt;/A&gt;&lt;SPAN&gt; jsfiddle but didn't work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;is there an example for this using AMD?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jul 2013 18:08:57 GMT</pubDate>
    <dc:creator>CarlosMacias</dc:creator>
    <dc:date>2013-07-24T18:08:57Z</dc:date>
    <item>
      <title>esri.bundle problem since 3.4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353374#M32734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I use my own strings in esri.bundle.toolbars.draw to localize map drawing tooltips (to Czech). This seems to stopped working in version 3.4+. Did I miss something in changelog or is there some easy workaround?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tomas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 12:44:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353374#M32734</guid>
      <dc:creator>TomasNovotny</dc:creator>
      <dc:date>2013-06-05T12:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: esri.bundle problem since 3.4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353375#M32735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Tomas,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I ran a quick test using the steps below and the new tips worked for me in Chrome but not Firefox. Restarted firefox with add-ins disabled (Firefox &amp;gt; Help &amp;gt; Restart with addins disabled) and then it worked for me there too. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Load this in chrome: &lt;/SPAN&gt;&lt;A href="http://developers.arcgis.com/en/javascript/samples/toolbar_draw/"&gt;http://developers.arcgis.com/en/javascript/samples/toolbar_draw/&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Set a breakpoint at line #1 in init. Refresh the page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Execute this in console: esri.bundle.toolbars.draw.addPoint = "Add new location"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Continue execution&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. Click "Point". Tooltip shows "Add new location"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you able to reproduce the issue in multiple browsers?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 15:22:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353375#M32735</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2013-06-05T15:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: esri.bundle problem since 3.4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353376#M32736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Kelly,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for quick repsonse. I've tried your test and found out this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;working: &lt;/SPAN&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;esri.bundle.toolbars.draw.addMultipoint = 'localized text';&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;working: &lt;/SPAN&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;esri.bundle.toolbars.draw = { addMultipoint: 'localized text'};&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;NOT working: &lt;/SPAN&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;esri.bundle.toolbars = {draw: { addMultipoint: 'localized text'}};&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As you can see, setting custom properties on higher level then esri.bundle.toolbars.draw doesn't work (and does in version 3.3). Obviously I can live with it but I'm curious what the problem is.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tomas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 14:26:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353376#M32736</guid>
      <dc:creator>TomasNovotny</dc:creator>
      <dc:date>2013-06-06T14:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: esri.bundle problem since 3.4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353377#M32737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I ran a quick test and was able to set new strings for esri.bundle.toolbars. Can you test this code and let me know if it works for you? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://jsfiddle.net/C63WY/"&gt;http://jsfiddle.net/C63WY/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 14:45:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353377#M32737</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2013-06-06T14:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: esri.bundle problem since 3.4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353378#M32738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This works. Well, the difference is in using dojo.mixin and not setting esri.bundle properties directly. Still not sure why it matters, sounds a bit like undocumented feature brought in 3.4.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, thank you very much for help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tomas&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jun 2013 17:09:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353378#M32738</guid>
      <dc:creator>TomasNovotny</dc:creator>
      <dc:date>2013-06-06T17:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: esri.bundle problem since 3.4</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353379#M32739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;yes it looks like the properties can't be set directly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried redefining the property with code similar to &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/81356-quot-esri-toolbars-Draw-quot-and-multipleDefine-Error-in-API-v.3.4?highlight=bundle+strings"&gt;this&lt;/A&gt;&lt;SPAN&gt; thread using &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/frc64/"&gt;this&lt;/A&gt;&lt;SPAN&gt; jsfiddle but didn't work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;is there an example for this using AMD?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jul 2013 18:08:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/esri-bundle-problem-since-3-4/m-p/353379#M32739</guid>
      <dc:creator>CarlosMacias</dc:creator>
      <dc:date>2013-07-24T18:08:57Z</dc:date>
    </item>
  </channel>
</rss>

