Note that there are some explanatory texts on larger screens.

plurals
  1. POAdobe Dreamweaver CC Phonegap Build Service Issue
    primarykey
    data
    text
    <p>I am trying to use jQuery mobile inside the Adobe Dreamweaver CC and then use phonegap build service to deploy the application to my phone. The issue here is that the Dreamweaver design panel is showing the jQuery Mobile UI but the application APK which is deployed over the phone does not. :(</p> <p>Please find below the screenshot of Dreamweaver CC with design and code panel.</p> <p><img src="https://i.stack.imgur.com/gPMLe.png" alt="screenshot of Dreamweaver CC with design and code panel"></p> <p>Find below the entire index.html code:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;meta charset="UTF-8"&gt; &lt;title&gt;jQuery Mobile Web App&lt;/title&gt; &lt;link href="file:///Macintosh%20HD/Applications/Adobe%20Dreamweaver%20CC/Configuration/Third%20Party%20Source%20Code/jquery-mobile/jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/&gt; &lt;link href="file:///Macintosh%20HD/Applications/Adobe%20Dreamweaver%20CC/Configuration/Third%20Party%20Source%20Code/jquery-mobile/jquery.mobile.structure-1.0.min.css" rel="stylesheet" type="text/css"/&gt; &lt;link href="jQueryAssets/jquery.ui.core.min.css" rel="stylesheet" type="text/css"&gt; &lt;link href="jQueryAssets/jquery.ui.theme.min.css" rel="stylesheet" type="text/css"&gt; &lt;link href="jQueryAssets/jquery.ui.accordion.min.css" rel="stylesheet" type="text/css"&gt; &lt;script src="file:///Macintosh%20HD/Applications/Adobe%20Dreamweaver%20CC/Configuration/Third%20Party%20Source%20Code/jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="file:///Macintosh%20HD/Applications/Adobe%20Dreamweaver%20CC/Configuration/Third%20Party%20Source%20Code/jquery-mobile/jquery.mobile-1.0.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="jQueryAssets/jquery-1.8.3.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="jQueryAssets/jquery-ui-1.9.2.accordion.custom.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div data-role="page" id="page"&gt; &lt;div data-role="header"&gt; &lt;h1&gt;Page One&lt;/h1&gt; &lt;/div&gt; &lt;div data-role="content"&gt; &lt;ul data-role="listview"&gt; &lt;li&gt;&lt;a href="#page2"&gt;Accenture&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#page3"&gt;Digital&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#page4"&gt;CASF RIA&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#page5"&gt;Hybrid Applications using PhoneGap&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div data-role="footer"&gt; &lt;h4&gt;Page Footer&lt;/h4&gt; &lt;/div&gt; &lt;/div&gt; &lt;div data-role="page" id="page2"&gt; &lt;div data-role="header"&gt; &lt;a href="#page"&gt;&lt;label style="color:white; font-weight:bolder"&gt;BACK&lt;/label&gt;&lt;/a&gt;&lt;h1&gt;ACCENTURE Page&lt;/h1&gt; &lt;/div&gt; &lt;div data-role="content"&gt; &lt;div data-role="fieldcontain"&gt; &lt;label for="selectmenu" class="select"&gt;Select Technology Areas:&lt;/label&gt; &lt;select name="selectmenu" id="selectmenu"&gt; &lt;option value="option1"&gt;Digital&lt;/option&gt; &lt;option value="option2"&gt;Oracle&lt;/option&gt; &lt;option value="option3"&gt;Mobile&lt;/option&gt; &lt;/select&gt; &lt;/div&gt; &lt;div data-role="fieldcontain"&gt; &lt;label for="slider"&gt;Value:&lt;/label&gt; &lt;input type="range" name="slider" id="slider" value="0" min="0" max="100" /&gt; &lt;/div&gt; &lt;div data-role="fieldcontain"&gt; &lt;label for="flipswitch"&gt;Option:&lt;/label&gt; &lt;select name="flipswitch" id="flipswitch" data-role="slider"&gt; &lt;option value="off"&gt;Off&lt;/option&gt; &lt;option value="on"&gt;On&lt;/option&gt; &lt;/select&gt; &lt;/div&gt; &lt;div data-role="collapsible-set"&gt; &lt;div data-role="collapsible"&gt; &lt;h3&gt;Header&lt;/h3&gt; &lt;p&gt;Content&lt;/p&gt; &lt;/div&gt; &lt;div data-role="collapsible" data-collapsed="true"&gt; &lt;h3&gt;Header&lt;/h3&gt; &lt;p&gt;Content&lt;/p&gt; &lt;/div&gt; &lt;div data-role="collapsible" data-collapsed="true"&gt; &lt;h3&gt;Header&lt;/h3&gt; &lt;p&gt;Content&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div data-role="footer"&gt; &lt;h4&gt;Page Footer&lt;/h4&gt; &lt;/div&gt; &lt;/div&gt; &lt;div data-role="page" id="page3"&gt; &lt;div data-role="header"&gt; &lt;a href="#page"&gt;&lt;label style="color:white; font-weight:bolder"&gt;BACK&lt;/label&gt;&lt;/a&gt;&lt;h1&gt;DIGITAL Page&lt;/h1&gt; &lt;/div&gt; &lt;div data-role="content"&gt; &lt;div id="Accordion1"&gt; &lt;h3&gt;&lt;a href="#"&gt;Section 1&lt;/a&gt;&lt;/h3&gt; &lt;div&gt; &lt;p&gt;Content 1&lt;/p&gt; &lt;/div&gt; &lt;h3&gt;&lt;a href="#"&gt;Section 2&lt;/a&gt;&lt;/h3&gt; &lt;div&gt; &lt;p&gt;Content 2&lt;/p&gt; &lt;/div&gt; &lt;h3&gt;&lt;a href="#"&gt;Section 3&lt;/a&gt;&lt;/h3&gt; &lt;div&gt; &lt;p&gt;Content 3&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; Content &lt;/div&gt; &lt;div data-role="footer"&gt; &lt;h4&gt;Page Footer&lt;/h4&gt; &lt;/div&gt; &lt;/div&gt; &lt;div data-role="page" id="page4"&gt; &lt;div data-role="header"&gt; &lt;a href="#page"&gt;&lt;label style="color:white; font-weight:bolder"&gt;BACK&lt;/label&gt;&lt;/a&gt;&lt;h1&gt;CASF RIA&lt;/h1&gt; &lt;/div&gt; &lt;div data-role="content"&gt; &lt;ol data-role="listview" data-inset="true" data-split-icon="arrow-d"&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt; &lt;h3&gt;Page&lt;/h3&gt; &lt;p&gt;Lorem ipsum&lt;/p&gt; &lt;span class="ui-li-count"&gt;1&lt;/span&gt;&lt;/a&gt;&lt;a href="#"&gt;Default&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt; Content &lt;/div&gt; &lt;div data-role="footer"&gt; &lt;h4&gt;Page Footer&lt;/h4&gt; &lt;/div&gt; &lt;/div&gt; &lt;div data-role="page" id="page5"&gt; &lt;div data-role="header"&gt; &lt;a href="#page"&gt;&lt;label style="color:white; font-weight:bolder"&gt;BACK&lt;/label&gt;&lt;/a&gt;&lt;h1&gt;HYBRID APPLICATIONS using PhoneGap&lt;/h1&gt; &lt;/div&gt; &lt;div data-role="content"&gt; &lt;div data-role="fieldcontain"&gt; &lt;label for="email"&gt;Email:&lt;/label&gt; &lt;input type="email" name="email" id="email" value="" /&gt; &lt;/div&gt; Content &lt;/div&gt; &lt;div data-role="footer"&gt; &lt;h4&gt;Page Footer&lt;/h4&gt; &lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; $(function() { $( "#Accordion1" ).accordion(); }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>This is how it looks in the mobile devices:</p> <p><img src="https://i.stack.imgur.com/e4cpx.png" alt="How jQuery Mobile page looks in Mobile."></p> <p>Any help would be appreciated :)</p> <p>Thanks.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload