<?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 Defect in XDK code-generator for select menu - patch in body in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062265#M54570</link>
    <description>--- xdk/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js     2016-01-21 09:57:46.000000000 -0500
+++ xdk-fixed/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js 2016-03-27 22:26:45.344384161 -0400
@@ -40,7 +40,7 @@
     var templateStr =
       '&lt;DIV class="table-thing with-label %s"&gt;' +
         '&lt;LABEL class="narrow-control"&gt;&lt;/LABEL&gt;' +
-        '&lt;DIV data-role="fieldgroup" class=""&gt;' +
+        '&lt;DIV data-role="fieldgroup" class="wide-control"&gt;' +
           '&lt;SELECT&gt;&lt;/SELECT&gt;' +
         '&lt;/DIV&gt;' +
       '&lt;/DIV&gt;';&lt;/DIV&gt;</description>
    <pubDate>Mon, 28 Mar 2016 02:37:21 GMT</pubDate>
    <dc:creator>Thepjday_A_</dc:creator>
    <dc:date>2016-03-28T02:37:21Z</dc:date>
    <item>
      <title>Defect in XDK code-generator for select menu - patch in body</title>
      <link>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062265#M54570</link>
      <description>--- xdk/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js     2016-01-21 09:57:46.000000000 -0500
+++ xdk-fixed/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js 2016-03-27 22:26:45.344384161 -0400
@@ -40,7 +40,7 @@
     var templateStr =
       '&lt;DIV class="table-thing with-label %s"&gt;' +
         '&lt;LABEL class="narrow-control"&gt;&lt;/LABEL&gt;' +
-        '&lt;DIV data-role="fieldgroup" class=""&gt;' +
+        '&lt;DIV data-role="fieldgroup" class="wide-control"&gt;' +
           '&lt;SELECT&gt;&lt;/SELECT&gt;' +
         '&lt;/DIV&gt;' +
       '&lt;/DIV&gt;';&lt;/DIV&gt;</description>
      <pubDate>Mon, 28 Mar 2016 02:37:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062265#M54570</guid>
      <dc:creator>Thepjday_A_</dc:creator>
      <dc:date>2016-03-28T02:37:21Z</dc:date>
    </item>
    <item>
      <title>Please provide steps to</title>
      <link>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062266#M54571</link>
      <description>&lt;P&gt;Please provide steps to reproduce this issue. Did you update to 3088 that was released last week?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2016 13:46:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062266#M54571</guid>
      <dc:creator>John_H_Intel2</dc:creator>
      <dc:date>2016-03-28T13:46:29Z</dc:date>
    </item>
    <item>
      <title>v3088 XDK contains the same</title>
      <link>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062267#M54572</link>
      <description>&lt;P&gt;v3088 XDK contains the same error:&lt;/P&gt;

&lt;OL&gt;
	&lt;LI&gt;Create a JQuery Mobile project&lt;/LI&gt;
	&lt;LI&gt;Drop a column onto the page&lt;/LI&gt;
	&lt;LI&gt;Drop a select menu into the column&lt;/LI&gt;
	&lt;LI&gt;Configure the select menu with an id&lt;/LI&gt;
	&lt;LI&gt;Run the prototype (emulator, browser, whatever - just to force the file to save)&lt;/LI&gt;
	&lt;LI&gt;Stop the prototype&lt;/LI&gt;
	&lt;LI&gt;Examine the code generated for the select menu&lt;/LI&gt;
	&lt;LI&gt;Actual behavior: The &amp;lt;select&amp;gt; tag will contain:&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;class="" "wide-control"=""&lt;/SPAN&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Expected behavior: The &amp;lt;select&amp;gt; tag will contain class="wide-control"&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;​​​&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;This is caused by the erroneous + symbol after the word class (class+"wide-control" instead of class="wide-control") in the tag in the code generator file, select_support.js. The code parser corrected deduces that class+"wide-control" is incorrect and makes the logical but incorrect adjustment - the plus-symbol must be a delimiter and is used to separate the name value pairs which leaves class with no value and "wide-control" with no value. The patch for this file is listed below.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;--- xdk/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2016-03-21 16:39:12.000000000 -0400&lt;BR /&gt;
	+++ xdk-3088-fixed/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js &amp;nbsp; &amp;nbsp;2016-04-04 10:20:20.525977011 -0400&lt;BR /&gt;
	@@ -40,7 +40,7 @@&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp;var templateStr =&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;div class="table-thing with-label %s" %s&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;label class="narrow-control"&amp;gt;&amp;lt;/label&amp;gt;' +&lt;BR /&gt;
	- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;div data-role="fieldgroup" class+"wide-control"&amp;gt;' +&lt;BR /&gt;
	+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;div data-role="fieldgroup" class="wide-control"&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;select&amp;gt;&amp;lt;/select&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;/div&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;/div&amp;gt;';&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2016 14:36:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062267#M54572</guid>
      <dc:creator>Thepjday_A_</dc:creator>
      <dc:date>2016-04-04T14:36:05Z</dc:date>
    </item>
    <item>
      <title>Small correction - the class=</title>
      <link>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062268#M54573</link>
      <description>&lt;P&gt;Small correction - the class="wide-control" is in the fieldgroup div and not the &amp;lt;select&amp;gt; tag.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2016 14:37:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062268#M54573</guid>
      <dc:creator>Thepjday_A_</dc:creator>
      <dc:date>2016-04-04T14:37:48Z</dc:date>
    </item>
    <item>
      <title>Thepjday -- the jQuery Mobile</title>
      <link>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062269#M54574</link>
      <description>&lt;P&gt;Thepjday -- the jQuery Mobile framework in the XDK has been deprecated and support will be removed in a future release. Please see this FAQ for recommended frameworks to use with App Designer &amp;gt; &lt;A href="https://software.intel.com/en-us/xdk/faqs/app-designer#best-app-designer-framework" target="_blank"&gt;https://software.intel.com/en-us/xdk/faqs/app-designer#best-app-designer-framework&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Apr 2016 01:59:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062269#M54574</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-04-09T01:59:24Z</dc:date>
    </item>
    <item>
      <title>I am reporting the same</title>
      <link>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062270#M54575</link>
      <description>&lt;P&gt;I am reporting the same update for v3400. Last report states that JQM is not abandoned and XDK is not removing the item from App Designer.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;--- xdk/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-06-26 03:33:54.469317275 -0400&lt;BR /&gt;
	+++ xdk-3400-fixed/components/server/ui-builder/ui-builder_repo/resources/toolbar/jquery_mobile/select/select_supporting.js&amp;nbsp; 2016-06-26 03:32:56.245287085 -0400&lt;BR /&gt;
	@@ -40,7 +40,7 @@&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var templateStr =&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;div class="table-thing with-label %s" %s&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;label class="narrow-control"&amp;gt;&amp;lt;/label&amp;gt;' +&lt;BR /&gt;
	-&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;div data-role="fieldgroup" class+"wide-control"&amp;gt;' +&lt;BR /&gt;
	+&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;div data-role="fieldgroup" class="wide-control"&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;select&amp;gt;&amp;lt;/select&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;/div&amp;gt;' +&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&amp;lt;/div&amp;gt;';&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jun 2016 07:37:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Defect-in-XDK-code-generator-for-select-menu-patch-in-body/m-p/1062270#M54575</guid>
      <dc:creator>Thepjday_A_</dc:creator>
      <dc:date>2016-06-26T07:37:05Z</dc:date>
    </item>
  </channel>
</rss>

