JQuery Mobile in edit mode

Does anybody have any experience getting jQuery Mobile (jqm) to work well in a CQ5.4 authoring environment? I can only seem to get the jqm code to run when I am in "preview" mode and have refreshed the page.

Welcome to the Apple Discussions.
Well you can avoid the hassle of re-installing because it won't help. This is a bug that affects some users of 10.6 and iPhoto, Aperture and/or Preview. Currently there is no solution.
iPhoto menu -> Provide iPhoto Feedback
and let them know that you too have the issue.
Regards
TD

Similar Messages

  • JQuery-Script only working when WebPart is in Edit Mode

    Hi there,
    so I developed some custom functionality with SPServices that works fine in my dev-environment. Now Im trying to deploy it in the productive environment and Ive struggled for several hours but cant get it to work.
    This is my code: http://pastebin.com/DvStqiet
    I insert the code inside of a simple form webpart.
    When the webpart / website is in edit mode, the code executes fine.
    When its not in edit mode, the jquery functions work, but the spservices functions do not seem to work. I get the error "Das Objekt unterstützt diese Eigenschaft oder Methode nicht." (in english its something like "The object does not support
    this property or method."). Line number of the error then points to the first occurrence of $.SPServices(). (Firefox Screenshot of Console: http://imgur.com/QvozF38)
    I searched nearly the whole Internet and tried different solutions.
    I wrapped the $(document).ready(function() {}) like this: ExecuteOrDelayUntilScriptLoaded(function() {}, "sp.js");
    And I tried writing the code directly to the webpart page via sharepoint designer. It does not work then either and I even cant enter edit mode.
    I found out, that the masterpage-Template is also referencing a jQuery-Instance (v 1.4.2), so I tried disabling the reference in my script, but the result is the same.
    I also tried referencing the scripts via absolute URLs, without success.
    The references to the scripts seem to work (I can click them in sharepoint designer). I just dont know why it is not working. If you have any further suggestions or have any idea how to tear this problem down, or find out whats maybe causing it, please let
    me know because Im really clueless right now...
    Thank you very much!

    OK it seems like I got it to work with the following:
    I just wrapped my entire code inside of
    (function($) {
        // Your usual jQuery code here using `$`,
        // this code runs immediately
    })(jQuery);
    and now it works. Im really happy, that it finally works... Seems like some other javascript (maybe referenced by the master template?) is overwriting the $.

  • How can I edit a page which uses jQuery Tabs that are hidden in edit mode?

    My client cannot update the html5 css3 jQuery tabs as they are not visible on the page in edit mode. Is there anyway that he can update with Contribute 6.5 or is there any other CMS which would allow him to update it?

    Hello ,
    To make scripts visible in edit mode follow the below mentioned steps.
    1) Administer the website.
    2) Select the role and click Edit role settings.
    3) Uncheck the option "Protect scripts, forms and spry widgets".
    4) Click OK to save and exit.
    Hope this solves your problem.
    Thanks and Regards
    Himanshu Satija

  • Test mode (5330 mobile TV edition)

    Hello, Please I need help.
    When I switched on my nokia 5330 mobile TV edition on, what I see on the screen is test mode. And anytime it comes up, it will stay on for some minutes and go off again. Sometimes it will show low battery on the screen. But I have tested the battery in another nokia 5330 and is working perfectly.
    Anybody that might be of help should please assist.
    Thanks

    Unfortunately NO.
    http://europe.nokia.com/find-products/devices/nokia-5330-mobile-tv-edition/specifications
    Previous Phones: 6600, 7610, 6230, 6230i, 1100, 1112, N70, N73, N95, N95 8GB, 5800XM, 5230, C5, iPhone 3GS, SE Xperia X10, N900, N8, SE Xperia Arc
    Current Phones: Nokia N9, iPhone 4

  • How do i change the path of data ajax false from returning to homepage, when using a PHP mail form in jquery mobile?

    I have a put a php mail form in the quote page of my mobile site. However when i send the form it returns to the route page rather than the quote page, i have used the data ajax false action as i dont want to send via ajax. i have left the thanks page blank as i want it to remain on the same page showing sent or declined message.  Can someone help please? 
    <?php
    // OPTIONS - PLEASE CONFIGURE THESE BEFORE USE!
    $yourEmail = "[email protected]"; // the email address you wish to receive these mails through
    $yourWebsite = "www.firstcalltransport.co.uk"; // the name of your website
    $thanksPage = ''; // URL to 'thanks for sending mail' page; leave empty to keep message on the same page
    $maxPoints = 4; // max points a person can hit before it refuses to submit - recommend 4
    $requiredFields = "name,email,collection,delivery,comments"; // names of the fields you'd like to be required as a minimum, separate each field with a comma
    // DO NOT EDIT BELOW HERE
    $error_msg = array();
    $result = null;
    $requiredFields = explode(",", $requiredFields);
    function clean($data) {
      $data = trim(stripslashes(strip_tags($data)));
      return $data;
    function isBot() {
      $bots = array("Indy", "Blaiz", "Java", "libwww-perl", "Python", "OutfoxBot", "User-Agent", "PycURL", "AlphaServer", "T8Abot", "Syntryx", "WinHttp", "WebBandit", "nicebot", "Teoma", "alexa", "froogle", "inktomi", "looksmart", "URL_Spider_SQL", "Firefly", "NationalDirectory", "Ask Jeeves", "TECNOSEEK", "InfoSeek", "WebFindBot", "girafabot", "crawler", "www.galaxy.com", "Googlebot", "Scooter", "Slurp", "appie", "FAST", "WebBug", "Spade", "ZyBorg", "rabaz");
      foreach ($bots as $bot)
      if (stripos($_SERVER['HTTP_USER_AGENT'], $bot) !== false)
      return true;
      if (empty($_SERVER['HTTP_USER_AGENT']) || $_SERVER['HTTP_USER_AGENT'] == " ")
      return true;
      return false;
    if ($_SERVER['REQUEST_METHOD'] == "POST") {
      if (isBot() !== false)
      $error_msg[] = "No bots please! UA reported as: ".$_SERVER['HTTP_USER_AGENT'];
      // lets check a few things - not enough to trigger an error on their own, but worth assigning a spam score..
      // score quickly adds up therefore allowing genuine users with 'accidental' score through but cutting out real spam
      $points = (int)0;
      foreach ($badwords as $word)
      if (
      strpos(strtolower($_POST['comments']), $word) !== false ||
      strpos(strtolower($_POST['name']), $word) !== false
      $points += 2;
      if (strpos($_POST['comments'], "http://") !== false || strpos($_POST['comments'], "www.") !== false)
      $points += 2;
      if (isset($_POST['nojs']))
      $points += 1;
      if (preg_match("/(<.*>)/i", $_POST['comments']))
      $points += 2;
      if (strlen($_POST['name']) < 3)
      $points += 1;
      if (strlen($_POST['comments']) < 15 || strlen($_POST['comments'] > 1500))
      $points += 2;
      if (preg_match("/[bcdfghjklmnpqrstvwxyz]{7,}/i", $_POST['comments']))
      $points += 1;
      // end score assignments
      foreach($requiredFields as $field) {
      trim($_POST[$field]);
      if (!isset($_POST[$field]) || empty($_POST[$field]) && array_pop($error_msg) != "Please fill in all the required fields and submit again.\r\n")
      $error_msg[] = "Please fill in all the required fields and submit again.";
      if (!empty($_POST['name']) && !preg_match("/^[a-zA-Z-'\s]*$/", stripslashes($_POST['name'])))
      $error_msg[] = "The name field must not contain special characters.\r\n";
      if (!empty($_POST['email']) && !preg_match('/^([a-z0-9])(([-a-z0-9._])*([a-z0-9]))*\@([a-z0-9])(([a-z0-9-])*([a-z0-9]))+ ' . '(\.([a-z0-9])([-a-z0-9_-])?([a-z0-9])+)+$/i', strtolower($_POST['email'])))
      $error_msg[] = "That is not a valid e-mail address.\r\n";
      if (!empty($_POST['url']) && !preg_match('/^(http|https):\/\/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)(:(\d+))?\ /?/i', $_POST['url']))
      $error_msg[] = "Invalid website url.\r\n";
      if ($error_msg == NULL && $points <= $maxPoints) {
      $subject = "Automatic Form Email";
      $message = "You received this e-mail message through your website: \n\n";
      foreach ($_POST as $key => $val) {
      if (is_array($val)) {
      foreach ($val as $subval) {
      $message .= ucwords($key) . ": " . clean($subval) . "\r\n";
      } else {
      $message .= ucwords($key) . ": " . clean($val) . "\r\n";
      $message .= "\r\n";
      $message .= 'IP: '.$_SERVER['REMOTE_ADDR']."\r\n";
      $message .= 'Browser: '.$_SERVER['HTTP_USER_AGENT']."\r\n";
      $message .= 'Points: '.$points;
      if (strstr($_SERVER['SERVER_SOFTWARE'], "Win")) {
      $headers   = "From: $yourEmail\r\n";
      } else {
      $headers   = "From: $yourWebsite <$yourEmail>\r\n";
      $headers  .= "Reply-To: {$_POST['email']}\r\n";
      if (mail($yourEmail,$subject,$message,$headers)) {
      if (!empty($thanksPage)) {
      header("Location: $thanksPage");
      exit;
      } else {
      $result = 'Your mail was successfully sent.';
      $disable = true;
      } else {
      $error_msg[] = 'Your mail could not be sent this time. ['.$points.']';
      } else {
      if (empty($error_msg))
      $error_msg[] = 'Your mail looks too much like spam, and could not be sent this time. ['.$points.']';
    function get_data($var) {
      if (isset($_POST[$var]))
      echo htmlspecialchars($_POST[$var]);
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="CSS/stylesheetnew.css" rel="stylesheet" type="text/css">
    <link href="../jquery-mobile/jquery.mobile-1.0a3.min.css" rel="stylesheet" type="text/css">
    <script src="../jquery-mobile/jquery-1.5.min.js" type="text/javascript"></script>
    <script src="../jquery-mobile/jquery.mobile-1.0a3.min.js" type="text/javascript"></script>
    <style type="text/css">
      p.error, p.success {
      font-weight: bold;
      padding: 10px;
      border: 1px solid;
      p.error {
      background: #ffc0c0;
      color: #F00;
      p.success {
      background: #b3ff69;
      color: #4fa000;
    </style>
    </head>
    <body>
    <div data-role="page" id="home">
      <div data-role="header" data-position="fixed">
       <h1>FIRSTCALL TRANSPORT</h1>
    </div>
        <div data-role="navbar" data-position="fixed">
                                    <ul>
                                      <li><a href="#about">About</a></li>
                                      <li><a href="#services">Services</a></li>
                                      <li><a href="#contact">Contact</a></li>
                                      <li><a href="#quote">Quote</a></li>
                                    </ul>
      </div>
      <div data-role="content"> </div>
         <div data-role="footer" data-position="fixed" > </div>
    </div>
    </div>
    <div data-role="page" id="quote">
      <div data-role="header" data-position="fixed">
        <h1>GET A QUOTE</h1>
      </div>
      <div data-role="content">
       <?php
    if (!empty($error_msg)) {
      echo '<p class="error">ERROR: '. implode("<br />", $error_msg) . "</p>";
    if ($result != NULL) {
      echo '<p class="success">'. $result . "</p>";
    ?>
    <form action="<?php echo basename(__FILE__); ?>" method="post" data-ajax="false"  >
    <noscript>
      <p><input type="hidden" name="nojs" id="nojs" /></p>
    </noscript>
    <p>
      <label for="name">Name: *</label>
      <input type="text" name="name" id="name" value="<?php get_data("name"); ?>" /><br />
      <label for="email">E-mail: *</label>
      <input type="text" name="email" id="email" value="<?php get_data("email"); ?>" /><br />
            <label for="company">Company:</label>
      <input type="text" name="company" id="company" value="<?php get_data("company"); ?>" /><br />
      <label for="collection">Collection: *</label>
      <input type="text" name="collection" id="collection" value="<?php get_data("collection"); ?>" /><br />
        <label for="delivery">Delivery: *</label>
      <input type="text" name="delivery" id="delivery" value="<?php get_data("delivery"); ?>" /><br />
      <label for="comments">Message: *</label>
      <textarea name="comments" id="comments" rows="5" cols="20"><?php get_data("comments"); ?></textarea><br />
      <input type="submit" name="submit" id="submit" value="Send" <?php if (isset($disable) && $disable === true) echo ' disabled="disabled"'; ?> />
    </p>
    </form>  </div>
         <div data-role="footer" >  </div>
      </div>
      </div>           
    </body>
    </html>

    My wife has left me for four weeks, favouring to be with our son who lives 4,000 km away. I now have to cook for myself and the steaks taste horrible. What am I doing wrong?
    If you do not know what I have (not) done to make the steak taste horrible, my question is as hard to answer as your question above.
    Please give us more info like giving us the code that sends the page to the homepage rather than to the previous page.

  • JQuery mobile layout grid not working after 4.2 upgrade

    Hi all,
    I'm running a mobile application on a hosted Apex environment which uses lots of jQuery mobile. The environment has been updated to 4.2 recently, and since that happened pages that I had setup to use the content grid, to show content in 3 columns no longer works, there only appears to be 1 column now. Code as below: -
    <div class="ui-grid-b">
         <div class="ui-block-a">Block A</div>
         <div class="ui-block-b">Block B</div>
         <div class="ui-block-c">Block C</div>
    </div><!-- /grid-b -->Item 1 has the following as the 'before label and item':
    <div data-role="fieldcontain"><div class="ui-grid-b"><div class="ui-block-a">Item 2 has the following as the 'before label and item':
    <div data-role="fieldcontain"><div class="ui-grid-b"><div class="ui-block-b">Item 3 has the following as the 'before label and item':
    <div data-role="fieldcontain"><div class="ui-grid-b"><div class="ui-block-c">with a closing </div> after each. This was working OK in 4.1
    Does anyone have any ideas what has changed that would affect this?
    Thanks,
    Mike
    Edited by: Mike, UK on Nov 4, 2012 4:20 PM

    Hi,
    I haven't completely got to the bottom of why this was happening, but I have resolved this after realising the ui-grid-b and ui-block-x elements weren't being rendered, seemed to be related to the 'Before Label and Item' label template item, if anyone else hits this.
    Cheers,
    Mike

  • Open file in edit mode

    I need to open a file in edit mode. In my web part on item click I need to do some action before hand (like create a folder and copy file, then open it in edit mode).
    I came across the code segment below to set to a hyperlink's onClick() event
    <a onfocus="OnLink(this)"    href="/Shared Documents/myDoc.docx"    onmousedown="return VerifyHref(this,event,'1','SharePoint.OpenDocuments','')"        onclick="return DispEx(this,event,'TRUE','FALSE','FALSE',            'SharePoint.OpenDocuments.3','1', 'SharePoint.OpenDocuments',            '','','','1','0','0','0x7fffffffffffffff')">Click</a>
    But in my case, it would be nice if I can open in C# code behind, after the folder operations in my Visual web part.
    SPfile's file.OpenBinary() give a byte[], but was unable to open file.
    I am using a LinkButton for the user to click on. Any advise ?

    Hi Ahamed,
    I guess you need to undertake some action server side before you redirect the user. There are a number of different ways to do it ... maybe using a long running process with redirect at the end ... or some jQuery that calls a "handler" waits for a response
    and then redirects the user.
    For the code to duplicate or copy the file see here:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfile.aspx
    if the existing code you have to open the document in edit mode works you should be able to reuse it.
    Thanks Chris

  • Apple Mobile Device (Recovery Mode) and frozen "Connect to iTunes" screen

    I have had my iPod Touch for about one year and have synced with my PC (XP) without incident during that time. Yesterday something happened while connecting with iTunes and I have not been able to find the solution on this board or others. Maybe the charge remaining in the iPod was insufficient. The iPod screen is frozen with the "Connect to iTunes" icon. I can turn it off (black screen) but as soon as it is attached to the PC or docked, the same icon reappears. I cannot make the red slider appear to shut it down.
    On the PC side, as soon as I attach the iPod, it wants to install the driver for "Apple Mobile Device (Recovery Mode)". I have attempted to point it to C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers find the driver, but what it wants is not there. I have completely uninstalled iTunes, Quicktime and related files; and reinstalled iTunes. I have tried every trick I can find in this forum and others to no avail. When the iPod is connected to the PC, the device manager shows Other Devices - Apple Mobile Device (Recovery Mode) with a yellow question mark and exclamation point. This device shows twice. The Apple Mobile Device USB Driver shows under Universal Serial Bus Controllers and is working properly.
    I am at the end of my rope. I hope somebody that can help me will read this. Thanks.

    Hi
    I am experiencing the same problem as the person in the first thread as follows:
    "The iPod screen is frozen with the "Connect to iTunes" icon. I can turn it off (black screen) but as soon as it is attached to the PC or docked, the same icon reappears. I cannot make the red slider appear to shut it down.
    On the PC side, as soon as I attach the iPod, it wants to install the driver for "Apple Mobile Device (Recovery Mode)". I have attempted to point it to C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers find the driver, but what it wants is not there. I have completely uninstalled iTunes, Quicktime and related files; and reinstalled iTunes. I have tried every trick I can find in this forum and others to no avail. When the iPod is connected to the PC, the device manager shows Other Devices - Apple Mobile Device (Recovery Mode) with a yellow question mark and exclamation point. This device shows twice. The Apple Mobile Device USB Driver shows under Universal Serial Bus Controllers and is working properly."
    I have tried everything I can think of and have been advised to do on the Apple Support pages but this makes no difference.
    Please can someone offer a solution.
    Message was edited by: WillJackThom

  • IPhoto:  I have several photos that will not open in the edit mode.  They also will not open to a screensaver.

    I have Version 10.6.8 and iPhoto 9, versiono 8.1.2.
    Two questions: 
    1)  I can't find the 9.0 to install so I can then update thru 9.3...
    2)  I have several pictures that will not open in the edit mode.  There is just a blank screen when I attempt to open them.  I cannot export them to the desktop either.  Message is:  Unable to create/Users/(my name)/Desktop
    Help!

    What about a work-around?
    Ios 7.1 etc. has a problem with communicating with exchange.  There are lots of reports of problems with pdf files.
    The work-arounds mentioned here may be of assistnace.
    https://discussions.apple.com/thread/5992793?start=0&tstart=0
    get a gmail account.
    There are lots of ways of moving files.
    A simple and popular way to copy files and share files among your devices.
    https://www.dropbox.com/
    "Box lets you store all of your content online, so you can access, manage and share it from anywhere. Integrate Box with Google Apps and Salesforce and access Box on mobile devices" Rated the most secure cloud storage by SkyHigh Networks.
    https://www.box.com/
    Files Connect -- "Cloud Storage services like Dropbox, MobileMe iDisk, Google Docs/Picasa, Facebook photos, FTP, SFTP, WebDAV ... AFS (Apple File Shares) SMB (Windows shares)  protocols"
    https://itunes.apple.com/us/app/files-connect/id404324302?mt=8
    Windows File server
    http://itunes.apple.com/us/app/filebrowser-access-files-on/id364738545?mt=8
    "Dukto is a simple application that allows you to share files between devices connected to the same (wireless) LAN network."
    http://www.tidal.it/?page_id=309&lang=en
    http://www.msec.it/blog/?page_id=11

  • DW CS6 and jQuery Mobile 1.2.0 - does not copy icons folder

    Using the trial version of DW CS6
    Attempting to create a JQuery Mobile Web site using DW and JQM 1.2.0
    This is what I have done.
    1. Created a new folder in C:\Program Files\Adobe\Adobe Dreamweaver CS6\configuration\Third Party Source Code\jquery-mobile2
    and copied the following files:
    jquery-1.8.2.js
    jquery.mobile-1.2.0.js
    jquery.mobile.structure-1.2.0.css
    jquery.mobile.theme-1.2.0.css
    \images - all files copied from the JQuery Mobile download for v1.2.0
    2. Edited the following files in C:\Program Files\Adobe\Adobe Dreamweaver CS6\configuration\BuiltIn\Mobile Starters:
    jQueryMobileLocalMultiPage.htm
    jQueryMobileLocalSplitMultiPage.htm
    and pointed them to the new jquery-mobile2 folder by changing each path from
    ../../Third Party Source Code/jquery-mobile/
    to
    ../../Third Party Source Code/jquery-mobile2/
    3. In DW, File New and selected the "Page from Sample > Mobile Starters > jQuery Mobile with Theme(local) and DW created a file with paths pointing to the local copies of jquery-mobile2 folder.
    4. File > Save As and point to a folder and hit save and DW opens a dialog box asking me if I want to copy the 2 CSS and 2 JS files mentioned above.
    So I hit "Copy" and it saves the HTML file and also copies the 2 CSS and 2 JS files. But when I open the HTML file created, in my browser, there are no images displayed. I checked the folder and although DW has copied the other files it has NOT copied the images folder. I have to manually copy the folder across and only then will the images display corrctly in the page.
    This appears to be a bug in DW CS8 and its handling of the JQMobile template.
    Is there a proper solution other than remembering to manually copy the images folder or can this be noted as a bug and corrected as I want to use the latest version of JQMobile.

    Fixed it myself. I realized that I needed to leave <link href="jquery-mobile/jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/> in index.html and to add a new line <link href="jquery-mobile/y_theme.css" rel="stylesheet" type="text/css"/>

  • JQuery Mobile and page transitions in Apex - how do they go together?

    Hi guys,
    I started off on a jQuery Mobile project with APEX - although I am still quite new to both. I have done quite a bit of research, but I haven't found really anything substantial about how they go together.
    Rather it appears to me, that both have their own way of dealing, that is to say recieving and sending data. Apex with normal http-requests, just a little AJAX on the side maybe, JQM almost only with AJAX.
    So I am running into a lot of trouble, when I use functions like apex.redirect() or .submit(), the $mobile.changePage() mostly doesnt how I want. Page content often stays in the DOM with JQM unwanted, data are sometimes not refreshed properly, or when I close a popup box, an unwanted reload takes place. Events are not bound the usual way, etc. etc.
    I certainly thoroughly have studied the JQM documentation, looked through many other tutorials and blogs, but basically I still lack in a lot of basic understanding, especially the communication between JQM and APEX - after all, the APEX Smart Phone UI from 4.2 is still quite new. And all tutorials about data management with JQM deal with JSON objects or XML - methods we can't get into due to time reasons.
    I have two questions to the community:
    A) Is it really recommendable to use a JQM framework with the "normal" page-show and page-submit events, that APEX delivers? Or if not recommendable, is it practical?
    B) Maybe some experienced users here can hint me to some recourses that specifically deal with the issues I mentioned above: e.g. How does JQM handle the urls it gets, when you use the APEX javascript functions? What global JQM settings are recommendable when using APEX, or what object-parameters should you use in the $.mobile.changePage() call?
    And one specific problem I just ran into: How does JQM treat Page-0 items? I use them for global application control, but for some strange reasons, they sometimes seem to be resettet.
    So these are a lot of questions, but I don't seek detailed answers here, rather some general guidence and advise. Any help is most appreciated.
    So long, with best regards,
    tobi
    Edited by: TobiP on 14.02.2013 13:41

    I will up this thread one time - what I normally wont do. But if noone can give any hints here this would be a really bad sign.
    I have kept on looking for those topics, but I still haven't found anything that goes into detail regarding APEX and JQM.
    Also one last wierd situation I would like to relate, that just occured: I submit a page with apex.submit('CREATE'), the dml-processing takes place, there is an unconditional branch after the processing back to that page, so it should be reloaded and refreshed - but it doesn't. Instead when I open a select list (JQM popup style), then the page gets refreshed, and the popup wont close anymore. I have no explanation for this. I hope, anyone can give me any hints.
    Thanks very much,
    tobi

  • Page from Sample - Mobile Starters - jQuery Mobile with theme not working on mobile

    I created a new webpage - New - Page from Sample - Mobile Starters - Jquery Mobile with Theme and did not modify it.
    That does not work on an iPhone or Android.
    What am I missing? Is there an update to make the jquery mobilesite work?
    This is how it looks in dreamweaver
    http://ricston.com/push/test/screenshot_dreamweaver.png
    This is how it looks on my phone:
    http://ricston.com/push/test/screenshot_galaxy.png
    The page for the template is here http://ricston.com/push/test/test.html - As you can see, nothing has been changed.

    Thank you.  I was having the exact same problem.  I even upoaded the unmodified starter page, just in case it was something I did.  Inserting the viewport line fixed it.  (Now I need to go back and insert that line into each of the pages I was working on.)
    The question remains, however, as to why the mobile starter pages don't include that line in the first place.
    [edit] FYI - On Dreamweaver CC, it's under the "common" group within "insert".  (I would have expected it under "JQuery Mobile", but it's not there.)

  • JQuery Mobile Swatches "No Theme Applied."

    I am trying to use the new "jQuery Mobile Swatches" tool.  To start I followed the video tutorial and created a new "jQuery Mobile with theme" page from the sample provided.  No matter what I do, or what I select, or modify in the css, etc.. the window alays says "No Theme Appied."  What am I missing?

    had the same problem (wrote webpages in HTML 5.0 and CSS 3.0, and linked up the custom themes in the appropriate place). Custom themes were not displayed (i.e. they were all rendered in white color). I tried this:
    when creating themes with the ThemeRoller, make sure to check no fields are empty in the  Theme Settings (left hand side column) of the themes you created (in my case, the text color field was empty in  "button:normal", "button:hover" and "button:pressed". Enter a color there.
    when I loaded my page in IE9, it didn't work. I then opened my page with Firefox - there it did work. Afterwards opened it with IE9 again where then it worked too. However,  it only worked on my computer. When I opened my page with IE9 on a different computer the custom themes where ... white.
    I tried a few more things, like locally hosting the default themes and editing the default themes, but no use, IE won't read it even though it is linked up correctlty.

  • JQuery Mobile Theme - works Dreamweaver but not online

    I created a new JQuery Mobile Theme in Fireworks CS6: Commands - JQuery Mobile Theme - Create New Theme. Then exported the theme to a folder where I am designing a new mobile app (Commands - JQuery Mobile Theme - Export Theme).
    I opened index.html in Dreamweaver CS6 and changed <link href="jquery-mobile/jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/> to the new *.css file. I used Find / Replace to change all instances of data-theme="e" to data-theme="y". I saved index.html and clicked on Live View where it looked perfect. I used FileZilla to move all of the files to the server hosting my website. But when I view it either in Firefox or on my Samsung phone, index.html doesn't include any of the CSS formatting. (It had worked online with the CSS formatting when I had just manually edited the color codes in a few places in jquery-mobile/jquery.mobile.theme-1.0.min.css)
    If I view index.html as a file on my computer in Firefox, the css works perfectly. But when I upload the contents of the folder to the server hosting my website, it doesn't.
    I'd appreciate any input on what I'm doing wrong.
    Thanks

    Fixed it myself. I realized that I needed to leave <link href="jquery-mobile/jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/> in index.html and to add a new line <link href="jquery-mobile/y_theme.css" rel="stylesheet" type="text/css"/>

  • JQuery Mobile template: Error Loading Page

    Hello Apex community,
    My name is Robert and this my first post on this forum. I've been developing with Oracle Apex for over a year now.
    I've recently started developing for mobile devices with Oracle Apex 4.2.
    However i stumble on serveral problems including the one I will describe here:
    The problem is best described by this screenshot:
    [ http://roberthantink.com/img/Error_loading_page.JPG]
    Whenever I log into my JQuery template based application which uses 'Application Express Accounts' as authentication.
    I get the following Error: "Error Loading Page".
    When inspecting with a development tool I only get this warning:
    "The page at https://apex***********.com/nbb/f?p=100:LOGIN_JQM_SMARTPHONE:5788626446201 displayed insecure content from http://apex*******.com/nbb/f?p=100:101:0:::::."
    Page 101 is de login page and after the login it should redirect to Home which is page 1. This is all default.
    The weird thing is I can log into the application if I am on our company's local network.
    And I can also log into the workspace from outside our network, but I cannot get in the Application.
    I've also made a 'Sample Database Application' which I can log into from anywhere.
    I've searched this forum and of course the internet and could not find anything on this subject.
    I hope my explanation is clear enough and that someone could help me out.
    Edited by: Robert Hantink on 5-dec-2012 11:09
    Edited by: Robert Hantink on 5-dec-2012 11:10

    So here is the update.
    I've checked my themes/templates/pages for hardcoded HTTP/HTTPS and didn't find anything.
    I also inspected and compared the website from inside our network and outside and could not find anything out of the ordinary.
    Because this problem only occurses when i use the JQuery Mobile template I also compared the JQuery template with a Normal template.
    The only thing i noticed besides the different scripts that are found in the <head>tag, is the <base> tag :
    <base href="http://*****************.com:8080/nbb/f?p=100:10:13950022358106::NO:::">
    This tag is only used in the mobile template.
    I have also used the firebug network function and i noticed that when the site is used from outside our network that there is no response to a POST.
    I've uploaded some screenshots to make things clear.
    This is what happens from inside our network when i click on the SUBMIT-button "test" :
    http://roberthantink.com/img/intern1.JPG
    http://roberthantink.com/img/intern2.JPG
    Everything just works and the answer to the POST is a html site.
    However if i do the same thing from outside our network this is what happens:
    http://roberthantink.com/img/extern1.JPG
    http://roberthantink.com/img/extern2.JPG
    The next thing I'm about to check is our webcache and our firewall.
    Because the current port that is used is 443 and maybe we need 8080 and 8181 as well.
    Hope this gives you more of an insight of what is going on.
    Let me know if you need more information.
    Thanks a million so far!!!

Maybe you are looking for