<?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: Popup changes at v3.4 compact -- bug? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633356#M59144</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Derek, marked as solved.&amp;nbsp; I've read the "What's new in 3.4" and I saw kelley's post about the regular old style InfoWindow, but this is the first mention I've seen of the "InfoWindowLite" that I am looking for.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just looked at the API reference again, and "InfoWindowLite" is not listed under esri/dijit.&amp;nbsp; This should probably be updated.&amp;nbsp; Perhaps "InfoWindowLite" should be the default if using the compact build, as it used to be? Or perhaps merged with esri/dijit/popupmobile.&amp;nbsp; It doesn't seem beneficial to have a compact build that defaults to a heaver implementation of a popup.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Apr 2013 16:37:38 GMT</pubDate>
    <dc:creator>MartynSmith</dc:creator>
    <dc:date>2013-04-17T16:37:38Z</dc:date>
    <item>
      <title>Popup changes at v3.4 compact -- bug?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633354#M59142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi there, I have an app that is using the ESRI javascript API v3.3compact and the compact style popups for graphic features..&amp;nbsp; When I "upgrade" to v3.4compact I loose this mobile styling and is replaced with the standard infowindow popup.&amp;nbsp; This seems like a bug to me, because this new popup styling is not mobile-friendly as is presumed if you are using the compact version of the API.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The popups I'd like to use are shown here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/webapi/javascript/arcgis/sandbox/sandbox.html?sample=mobile_featurelayer" rel="nofollow" target="_blank"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/sandbox/sandbox.html?sample=mobile_featurelayer&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you take that example, change the api version from "3.3compact" to "3.4compact" and click "Run" you'll see exactly my issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using v3.4 how can I get this mobile style popup back?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 15:17:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633354#M59142</guid>
      <dc:creator>MartynSmith</dc:creator>
      <dc:date>2013-04-17T15:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Popup changes at v3.4 compact -- bug?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633355#M59143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;At 3.4, we changed the default info window to be the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://developers.arcgis.com/en/javascript/jsapi/popup.html" rel="nofollow" target="_blank"&gt;popup&lt;/A&gt;&lt;SPAN&gt;. We doc'ed this in the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://developers.arcgis.com/en/javascript/jshelp/whats_new.html" rel="nofollow" target="_blank"&gt;what's new in 3.4&lt;/A&gt;&lt;SPAN&gt;. This affects both the regular and compact builds.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To get the pre-3.4 style info window back for the compact build, do this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;dojo.require("esri.dijit.InfoWindowLite");&amp;nbsp; ...&amp;lt;snip&amp;gt;...&amp;nbsp; map = new esri.Map("map", { &amp;nbsp; basemap: "streets", &amp;nbsp; center: [-104.808, 39.719], &amp;nbsp; zoom: 8 }); var iw = new esri.dijit.InfoWindowLite({}, dojo.create("div", null, map.root)); iw.startup(); map.setInfoWindow(iw);&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Full example here:&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://jsfiddle.net/SDZHp/" rel="nofollow" target="_blank"&gt;http://jsfiddle.net/SDZHp/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kelly also posted how to get the older style info window back in another thread if you're curious:&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://forums.arcgis.com/threads/80652-Info-Window-Version-3.4-of-the-JavaScript-API?p=286015&amp;amp;viewfull=1#post286015" rel="nofollow" target="_blank"&gt;http://forums.arcgis.com/threads/80652-Info-Window-Version-3.4-of-the-JavaScript-API?p=286015&amp;amp;viewfull=1#post286015&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 15:43:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633355#M59143</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2013-04-17T15:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Popup changes at v3.4 compact -- bug?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633356#M59144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Derek, marked as solved.&amp;nbsp; I've read the "What's new in 3.4" and I saw kelley's post about the regular old style InfoWindow, but this is the first mention I've seen of the "InfoWindowLite" that I am looking for.&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just looked at the API reference again, and "InfoWindowLite" is not listed under esri/dijit.&amp;nbsp; This should probably be updated.&amp;nbsp; Perhaps "InfoWindowLite" should be the default if using the compact build, as it used to be? Or perhaps merged with esri/dijit/popupmobile.&amp;nbsp; It doesn't seem beneficial to have a compact build that defaults to a heaver implementation of a popup.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 16:37:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633356#M59144</guid>
      <dc:creator>MartynSmith</dc:creator>
      <dc:date>2013-04-17T16:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Popup changes at v3.4 compact -- bug?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633357#M59145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You're welcome and you're right�?? we need to doc InfoWindowLite. We'll do that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 16:38:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-changes-at-v3-4-compact-bug/m-p/633357#M59145</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2013-04-17T16:38:10Z</dc:date>
    </item>
  </channel>
</rss>

