My html code is only working on the 1st tab panel (muse widget)

I have some html code with javascript which calculates total marks. I inserted this in the first tab and my code works fine, but when i insert it in the second, third and so on it stops working completely(including the 1st tab). Is there something i am doing wrong or is this not possible?

Hi
If the custom code you are using is in conflict with Muse code  or if its breaking page workflow then it can be an issue as the page elements will not work.
Please verify the code used and modify accordingly.
Thanks,
Sanjit

Similar Messages

  • My html table is not showing on the 2nd tab panel (muse widget)

    The same table works just fine on the first tab however when I try to click on the second table in browser mode or preview page on browser, my table does not show up. Any tips for fixing this issue?

    If I get this right, you're using the Tabbed panel widget to display a HTML table in each of the tabs. If that is the case, please make sure you insert the HTML content on each the tab's content area respectively. In order to verify this, switch between the tabs in Design mode to check your content.
    Thanks,
    Vinayak

  • Including image in SharePoint survey answer and hiding elements only work on the first page

    Hi All,
    I would like to add some text/remove some text etc on a sharepoint survey page.
       Which i have done using jquery/jscript.
    But unfortunately it only works on the first page.
    Any ideas how i can get it to work on all the pages?
    See a sample here on how you can add the scripts:
        http://sharepointkings.blogspot.com.au/2011/05/include-image-in-sharepoint-survey.html
    Cheers

    Hi Patrick, does the first page use the same ASPX file as the other pages? If not, you will need to add your jquery/jscript to the other page as well.
    Dimitri Ayrapetov (MCSE: SharePoint)

  • My head phone jack isn't working. Only works with the new headphones that have three rings at the bottom. My regular ones with two rings don't work with the computer anymore. Anyone know a fix?

    My head phone jack isn't working. Only works with the new headphones that have three rings at the bottom. My regular ones with two rings don't work with the computer anymore. Anyone know a fix? Ive tried reseting my computer and that didnt work

    Get the new keyboard at eBay and replace by yourself may be cheaper way, though you're required higher skill and well know about MacBook Air.
    http://www.ebay.com/sch/i.html?_from=R40&_trksid=p2050601.m570.l1313.TR0.TRC0.H0 .Xmacbook+air+2011+keyboard&_nkw=macbook+air+2011+keyboard&_sacat=0
    https://www.youtube.com/watch?v=gLbasVD69xo

  • Button get_url only worked after the first loop

    Hi all,
    I created a new layer, draw a rectangle, converted it to button, made its alpha to 0 and then added a snippet to go to the url. But when it played, the action only worked after the first loop had finished. It didn't work at the beginning.
    Somebody save me
    Thanks

    your button must exist when your code executes.

  • With my i phone 4 , the Push notifications doesn't work for apps like (fb viber , whatsapp etc ) it only works for the official apps like message  even when im using the phone, has  this probleme with the iOs 6.0.1 and also with the iOs 6.1

    With my i phone 4 , the Push notifications doesn't work for apps like (fb viber , whatsapp etc ) it only works for the official apps like message  even when im using the phone, has  this probleme with the iOs 6.0.1 and also with the iOs 6.1

    This isn't an issue. Notice the screen prior to the one that shows usage has an iCloud section and a Manage Storage button. For this button to activate ios needs to download a few kb from icloud. Switching back to this screen forces ios to download those few kb.

  • I don't know what's wrong with my camara it's all black and the front only works not the back

    I don't know what's wrong with my camara it's all black and the front only works not the back

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • Flash Player only works for the account that downloaded it

    I downloaded flash player and did not specify any special preferences, however, it doesn't work for the 2 other accounts on the computer.  It only runs for the Administrator account from which i downloaded it. I'm running XP professional. Can someone tell me how to fix this?

    hi, i had already deleted cookies, temp internet files, etc;
    i only have the IE pop up blocker and blocking level set at Medium;
    it's the latest version of FP 10.0.45.2.
    I installed this version a couple of weeks ago and it worked ok for all accounts (the other 2 accounts are not admin) for a week. Then, it stopped working for all accounts, i reinstalled it (some trial and error involved), then when it finally reinstalled, only works for the one account. i just tried to reinstall from one of the other accounts and error mssg said  "failed to register"
    Date: Sun, 6 Jun 2010 11:20:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: Flash Player only works for the account that downloaded it
    Hi ol, I would go to Tools, click on Internet Options and clear the Temp files. Delete Cookies, Delete Files, including the off line content. I would do this using all accounts. Also check the history files while you are there and delete those also unless you have done so recently.
    What version of Flash Player do you have Installed?
    Do you use any adblock or pop up blocker software?
    Thanks,
    eidnolb
    >

  • I purchased a new vehicle with a USP port but my nano model A199 will not work, only works with the aux plug which will not allow me to view the songs on the vehicle touchscreen. Is there a download I can get to put into this nano?

    I purchased a new vehicle and the older ipod nano I have will not work through the USP  port, only works through the aux plug. Is there a download i can get toput into the nano that will then allow me to use the USP port instead of the aux port?

    Check with your dealer and see if there is a special cable available for connecting your iPod. It should have a dock connector on one end and USB and miniplug on the other.

  • The CustomDatumExample.java only works if the Employee object has 2 attributes.

    The CustomDatumExample.java only works
    if the Employee object has 2 attributes -
    (EmpName and EmpNo). If I try to add
    another attribute to the Employee object I get java.lang.ArrayIndexOutOfBoundsException: 2 on the getAttr3 method.
    Anyone know why? Thanks.
    Employee object
    CREATE TYPE employee AS OBJECT
    (empname VARCHAR2(50), empno INTEGER,
    attr3 VARCHAR2(50));
    Custom object class
    public class Employee implements CustomDatum, CustomDatumFactory
    public static final String SQLNAME = "EMPLOYEE";
    public static final int SQLTYPECODE = OracleTypes.STRUCT;
    MutableStruct _struct;
    static int[] _sqlType =
    12, 4
    static CustomDatumFactory[] _factory = new CustomDatumFactory[3];
    static final Employee _EmployeeFactory = new Employee();
    public static CustomDatumFactory getFactory()
    return _EmployeeFactory;
    /* constructor */
    public Employee()
    struct = new MutableStruct(new Object[3], sqlType, _factory);
    /* CustomDatum interface */
    public Datum toDatum(OracleConnection c) throws SQLException
    return struct.toDatum(c, SQL_NAME);
    /* CustomDatumFactory interface */
    public CustomDatum create(Datum d, int sqlType) throws SQLException
    if (d == null) return null;
    Employee o = new Employee();
    o._struct = new MutableStruct((STRUCT) d, sqlType, factory);
    return o;
    /* accessor methods */
    public String getEmpname() throws SQLException
    { return (String) _struct.getAttribute(0); }
    public void setEmpname(String empname) throws SQLException
    { _struct.setAttribute(0, empname); }
    public Integer getEmpno() throws SQLException
    { return (Integer) _struct.getAttribute(1); }
    public void setEmpno(Integer empno) throws SQLException
    { _struct.setAttribute(1, empno); }
    public String getAttr3() throws SQLException
    { return (String) _struct.getAttribute(2); }
    public void setAttr3(String attr3) throws SQLException
    { _struct.setAttribute(2, attr3); }
    }

    You also need to add an appropriate element to the _sqlType array.
    In practice, it is easiest to have JPublisher regenerate the CustomDatum class when you have changed your object type definition:
    jpub -user=scott/tiger -sql=EMPLOYEE:Employee

  • I have a touchscreen laptop running Windows 8.1. Is it possible to use the touchscreen with Firefox? I've installed Firefox but it only works with the mouse etc

    have a touchscreen laptop running Windows 8.1. Is it possible to use the touchscreen with Firefox? I've installed Firefox but it only works with the mouse etc

    Hello Sirving575, sorry but the metro version of firefox has been cancelled, see : https://blog.mozilla.org/futurereleases/2014/03/14/metro/
    thank you

  • Why does my html code becomes unreadable overview on the search engine adobe edge code

    Hello
    Why does my html code becomes unreadable overview on the search engine? Everything alligner left, the images no longer appear and the page background template either. I am new in the html code, but I have nothing to change this one and the other one day it became like that.
    Can you please help me??

    Il s'agit d'un modèle
    Le code est le suivant:
    <html xmlns="http://www.w3.org/1999/xhtml"><head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="http://xdioms.com/ShippedListingTemplates/mobileworld/1/layout.css" type="text/css" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="http://xdioms.com/ShippedListingTemplates/mobileworld/1/tabs.css">
    <link href="http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700,300,300italic" rel="stylesheet" type="text/css">
      <!--[if lt IE 9]>
      <style>
      .content{
      height: auto;
      margin: 0;
      .content div {
      position: relative;
      </style>
      <![endif]-->
    <title>Listing Template</title>
    </head>
    <body>
    <div id="wrap">
    <div style="height: 220px;" id="header">
    <img style="height: 172px;" src="http://drive.google.com/uc?id=0B4DAWy8zc1mhUW56ckY4OFV5NWM>
    <div class="outwrapsocial">
    <a href="#" class="social" id="twitter"></a>
    <a href="#" class="social" id="fbk"></a>
    <form name="search" method="get" action="http://stores.ebay.com.au/#/_i.html?_nkw=lakljsdfsdf&submit.x=36&submit.y=18" target="_parent">
    <input type="text" autocomplete="off" name="_nkw" id="searchId" size="17" maxlength="300">
    <input type="submit" name="submit" value="Search" href="#">
    </form>
    </div>
    </div>
    <div id="innerwrap">
    <div id="cssmenu">
    <ul>
    <li><a href="#"><span>Livraison</span></a></li>
    <li class="last"><a href="#"><span>Paiement</span></a></li>
    <li class="last"><a href="http://feedback.ebay.fr/ws/eBayISAPI.dll?ViewFeedback2&userid=k_aprice&&iid=330507957027&s spagename=VIP:feedback&ftab=FeedbackAsSeller"><span>Nos évaluations</span></a></li>
    <li class="last"><a href="#"><span>Retours</span></a></li>
    <li class="last"><a href="#"><span>Contactez-nous</span></a></li>
    </ul>
    </div>
    <!--Menu top-->
    <div class="slidercontainer">
    <div align="center" style="%%pictures-0-big%%" class="artikelbilder">
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-0-small%%">
    <span><img width="540px" height="611px" src="%%pictures-0-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-1-small%%">
    <span><img width="540px" height="611px" src="%%pictures-1-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-2-small%%">
    <span><img width="540px" height="611px" src="%%pictures-2-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-3-small%%">
    <span><img width="540px" height="611px" src="%%pictures-3-big%%"></span></a>
    <a href="#thumb" class="thumbnail"><img width="100px" height="75px" border="0" src="%%pictures-4-small%%">
    <span><img width="540px" height="611px" src="%%pictures-5-big%%"></span></a></div>
    </div>
    <!---End Slider-->
    <section class="tabs">
    <div class="productdescription">
    <h6>Description</h6>
    <p>%%description%%</p>
    </div>
                 <input type="radio" id="tab-1" name="radio-set" class="tab-selector-1" checked="checked">
             <label for="tab-1" class="tab-label-1">Livraisons</label>
                 <input type="radio" id="tab-2" name="radio-set" class="tab-selector-2">
             <label for="tab-2" class="tab-label-2">Retours</label>
                 <input type="radio" id="tab-3" name="radio-set" class="tab-selector-3">
             <label for="tab-3" class="tab-label-3">CGV</label>
                 <input type="radio" id="tab-4" name="radio-set" class="tab-selector-4">
             <label for="tab-4" class="tab-label-4">Contactez nous</label>
                   <div class="clear-shadow"></div>
             <div class="content" style="height: 650px;">
             <div class="content-1">
      <h2>Livraison</h2>
                            <p style="border-right-width: 0px; padding-left: 0px; border-left-width: 0px; padding-bottom: 20px;"> Votre commande est expediée le jour même* pour toute commande passée avant 16h du lundi au vendredi etle samedi avant 10h. Toute commande passée le samedi après 10h, le dimanche et les jours fériés sera expédiée* le lundi ou premier jour ouvré suivant. </p>
                            <img src="file:///C:/Users/K%27aprice/Pictures/LOGO/lookmobile/lettre%20prioritaire.png" style="border: 0px solid; width: 623px; height: 100px;">
    <a style="width: 623px;" href="http://www.part.csuivi.courrier.laposte.fr/suivi?chatTpl=laposte-boutique-part&chatSid=823"><img alt="suivi lettre max" src="file:///C:/Users/K%27aprice/Pictures/LOGO/lookmobile/lettre%20max.png" style="border: 0px solid; width: 623px; height: 100px; padding-top: 10px;"></a>
    <a style="width: 623px; padding-top: 10px;" href="http://www.mondialrelay.fr/suivi-de-colis/"><img alt="suivi mondial relay" src="file:///C:/Users/K%27aprice/Pictures/LOGO/lookmobile/mondial%20relay.png" style="border: 0px solid; width: 623px; height: 100px; padding-top: 10px;"></a>
    <a style="width: 623px; padding-top: 10px;" href="http://www.colissimo.fr/portail_colissimo/suivre.do?language=fr_FR"><img alt="colissimo" src="file:///C:/Users/K'aprice/Pictures/LOGO/lookmobile/colissimo1.png" style="border: 0px solid; width: 623px; height: 100px; padding-top: 10px;"></a>
                        </div>
             <div class="content-2">
      <h2>See Shipping Process</h2>
                            <p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.</p>
         </div>
             <div class="content-3">
      <h2><span class="currency_converter_text">100</span><span class="currency_converter_text">% Success</span></h2>
                            <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p>
      <p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus.</p>
         </div>
         <div class="content-4">
      <h3>Who we are</h3>
      <p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus.</p>
         </div>
             </div>
      </section>
    <div class="sidebar">
    <div class="categoryhead">Categories</div>
    <div class="listingcat">
    <ul>
    <a href="http://stores.ebay.fr/K-apriCee/Housses-et-coques-/_i.html?_fsub=5676135014&_sid=685878474 &_trksid=p4634.c0.m322"><li>Etuis &amp; coques</li></a>
    <a href="#"><li>Film protection écran</li></a>
    <a href="#"><li>Ecrans replacement</li></a>
    <a href="#"><li>Pieces detaches &amp; outils</li></a>
    <a href="#"><li>Batteries</li></a>
    <a href="#"><li>Ecouteurs</li></a>
    <a href="#"><li>Autres accessoires</li></a>
    </ul>
    </div>
    <div class="categoryhead">Boutique</div>
    <div class="listingcat">
    <ul>
    <a href="http://www.stores.ebay.fr/id=685878474"><li>Accueil</li></a>
    <a href="#"><li>Livraison</li></a>
    <a href="#"><li>Paiments</li></a>
    <a href="#"><li>Retours</li></a>
    <a href="#"><li>Nous contacter</li></a>
    </ul>
    </div>
    <div class="categoryhead">Newsletter</div>
    <div class="listingcat">
    <p>Ajoutez notre boutique a vos favoris,pour être informer de nos promotions et nouveautés.</p>
    <a href="http://my.ebay.fr/ws/eBayISAPI.dll?AcceptSavedSeller&amp;sellerid=k_aprice&amp;ssPageName= STRK:MEFS:ADDSTR&amp;rt=nc" class="button">S'inscrire</a>
    </div>
    <div class="categoryhead">Paiements</div>
    <div class="listingcat">
      <div align="center"><img src="http://xdioms.com/ShippedListingTemplates/mobileworld/1/img/cards.png">  </div>
    </div>
    <div class="categoryhead">Livraisons</div>
    <div class="listingcat">
      <div align="center"><img src="http://xdioms.com/ShippedListingTemplates/mobileworld/1/img/widget-dhl.png">  </div>
    </div>
    <div class="categoryhead">Services</div>
    <div class="listingcat">
      <div align="center"><img style="height: 180px; width: 200px; padding-top: 20px;" src="http://www.ds-imprimerie.fr/media/images_dillustration/satisfait_ou_rembourse.png">  </div>
    </div>
    </div>
    <!--inerwrap end-->
    </div>
    <!--outer wrap-->
    <div id="footer">
    </div>
    </div>
    <div id="cacaowebfirefoxextension"></div><script type="text/javascript">var Cacaoweb = { callbackIsRunning: function () { var cacaodiv = document.createElement("div"); cacaodiv.id = "cacaorunning"; document.body.appendChild(cacaodiv); } };</script><script type="text/javascript" src="http://127.0.0.1:4001/isrunning" id="isrunning"></script><div id="cacaorunning"></div></body></html>

  • 'On open' only works in the same folder?

    I'm running an 'On open' script but it only works when the folder to be processed that placed onto the AS is in the same folder.
    Is there a workaround?

    I'm not familiar with ImageMagick, but there are a couple of issues with your script.
    1) The on open handler takes the files dropped on the application as it's arguments, but you are using the Finder's currently selected items.
    2) File paths that might contain spaces should be quoted, or your shell script will break when it tries to do something with the space delimited items.
    If you are just trying to create a text string that contains all of the (selected or dropped) items, something like the following should work (I just used a dialog to show what the shell script would be - you should test before using mogrify on original files):
    Finder selection:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    set upath to ""
    tell application "Finder" to repeat with f in (get selection)
    set chosenfile to quoted form of POSIX path of (f as text)
    set upath to upath & chosenfile & space
    end repeat
    display dialog "do shell script " & "/opt/local/bin/mogrify -format jpg " & upath & "*.psd"
    beep 2
    </pre>
    on open handler:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on open TheItems
    set upath to ""
    repeat with f in TheItems
    set chosenfile to quoted form of POSIX path of (f as text)
    set upath to upath & chosenfile & space
    end repeat
    display dialog "do shell script " & "/opt/local/bin/mogrify -format jpg " & upath & "*.psd"
    beep 2
    end open
    </pre>

  • Adjustment brush is only working on the outer edge of all of my photos, why?

    I've just downloaded LR 4, watched tutorials but my adjustment brush only works on the outer edge of my photos.  The brush changes to an arrow when I move towards the center of the photo.  Why?

    Thank you so much.
    I took this and wrapped it all in an if statement.
    Since Liability_Continued was my master page, the script ended up looking similar to this:
    if (xfa.datasets.data.job.data.state.value == "NY"){
    var oMaster = xfa.resolveNodes("Liability_Continued");
    for (var i=0; i<oMaster.length; i++)  {
         oMaster.item(i).footer.liabilityFooterBig.presence = "visible";
         oMaster.item(i).footer.liabilityFooter.presence = "invisible";

  • My ringer only works for the phone ringer. It is silent on all other functions. Anyone experience this before? All settings are correct.

    My ringer only works on the phone. All other functions are silent and the ringer increase button does not add volume.

    Had this happen today and 2X past as you discribed. A reboot (turn phone off and on) restored all sounds for me. The first time I can't associate w/ a cause but the second and third were just after listening to a podcast using the apple podcast app - the only app available for that. That's my story and for now I'm sticking to it.

Maybe you are looking for

  • Atualização no pedido de venda.

    Boa tarde. Tenho um PV aberto com alguns itens e preciso fechar um deles, porém ao alterar algum dado (quantidade) deste item no pedido aparece a mensagem abaixo ao "Atualizar". "Outro usuário alterou a quantidade do lote 2031 no depósito 02 na linha

  • Error executing SSIS remotely

    I have a package that created and stored on SQL01.SSISDB catalog. The package has SQL Job Transfer task, which will connect to SQL02 and transfer jobs to SQL03.   It works fine if i run this package from SQL01.  As soon as I create a job on SQL02 to

  • Storing my catalog on separate fast internal drive...?

    I'm curious as to whether certain performance issues with Lightroom 4 are related to my setup...I am on Windows 7, 12GB RAM, 2 750GB 7200rpm hard drives (internal) and several external drives. The way I have it set up is: C: - Where Lightroom is inst

  • No sound when I export my movies with QuickTime for windows.

    Using QuickTime Pro for windows and getting no sound on my exported movies. Won't even give me the option of adjusting the sound on options then movie settings. Any ideas? Thanks...

  • How can I downgrade my iPhone 4 back to IOS 5.1.1? IOS 6 isn't working for me.

    I've been having wifi problems and I heard it could be fixed by downgrading. Now I just need to figure out how to do that.