Spry Panels: How to link to a tab within a tab?

hi, I was wondering if anyone could help me with this.
I can set up a link to a main tab on a page of my website by just replacing '/index.html' with '/?tab=x' (with x being a number).
Now within those tabs there are another set of tabs that I would also like to be able to link to, does anyone have any information on this?

just a bump before I head out for the night.  Any help will be greatly appreciated.  Thanks!

Similar Messages

  • When I use Panorama and close a tab within a tab group, it opens another tab within another tab group rather than a tab from within the first group. Why?

    I have a lot of tab groups and it is just frustrating when I close a tab within tab group A and then it brings me to a tab in tab group B. Is there any way to fix this?

    The problem is just with the name of the tab, not with the contents of the page -- the page looks normal??
    I ask about the page because Firefox 23 seems to have introduced a problem with Firefox's "fast back-forward cache" on the Google search results page. It is related to the "instant prediction results" feature interacting with Firefox is some different way. (More in this thread: [https://support.mozilla.org/en-US/questions/970863?page=2#answer-485663])
    Might be related. Not sure.

  • Linking to an anchor within the same page

    Anyone know how to link to an anchor within the same page?
    For instance, im making a FAQ page. at the top of the page I would like to list all the questions. i would like the viewer to be able to click a question which brings them to the answer on the bottom of the page.
    looked in inspector couldn't find it. linking to anchors is pretty basic, so id be really suprised if iweb doesn't have this feature. so im assuming im missing it.......
    how do i do this?

    Anyone know how to link to an anchor within the same page?
    how do i do this?
    Linking to an anchor within the same page is no more than scrolling to it, and can be (easily) emulate with javascript window.scroll function.
    See my post here: http://discussions.apple.com/thread.jspa?messageID=7676908&#7676908
    All javascript is linked to the example page.

  • Tab block within a tab block..

    Hello Gurus,
    I am trying to find a technique where I can create tab within a tab block. On a selection-screen report I am working I am creating a tab as follow. But I need two more tabs within this tab. Is it possible ? How ?
    SELECTION-SCREEN BEGIN OF BLOCK BSD-2 WITH FRAME Title text-030.
    SELECT-OPTIONS :
                     S_DSD  FOR  sy-datum,
                     S_DD   FOR  sy-datum,
    SELECTION-SCREEN END OF BLOCK BSD-2.
    SELECTION-SCREEN END OF SCREEN 700.
    SELECTION-SCREEN: BEGIN OF TABBED BLOCK tab_block for 5 LINES,
    TAB (24) tab1 USER-COMMAND tabpush6
      DEFAULT SCREEN 700,
    END OF BLOCK tab_block.
    Regards,
    Jainam.

    Hi Shah,
    SELECTION-SCREEN BEGIN OF SCREEN 500 AS SUBSCREEN. " Use these Subscreen as mentioned below
    PARAMETERS: carrid type spfli-carrid,
                connid type sflight-connid.
    SELECTION-SCREEN END OF SCREEN 500.
    SELECTION-SCREEN BEGIN OF SCREEN 600 AS SUBSCREEN.
    PARAMETERS: matnr type mara-matnr,
                maktx type makt-maktx.
    SELECTION-SCREEN END OF SCREEN 600.
    SELECTION-SCREEN: BEGIN OF TABBED BLOCK tab FOR 10 LINES,
                      TAB (20) button1 USER-COMMAND ucom1,
                      TAB (20) button2 USER-COMMAND ucom2,
                      tab (20) button3 USER-COMMAND ucom3, " Other Tabs
                      tab (20) button4 USER-COMMAND ucom4, " Other Tab
                      tab (20) button5 USER-COMMAND ucom5, " Etc
                      END OF BLOCK tab.
    INITIALIZATION.
      button1 = 'Flight Details'.
      button2 = 'Material Details'. " Tab Description
      button3 = 'Material Details'. " Tab Description
      button4 = 'Material Details'. " Tab Description
      button5 = 'Material Details'. " Tab Description
      tab-prog = sy-repid.
      tab-dynnr = 500. " Initially Assign a Screen
      tab-activetab = 'PUSH1'.
    AT SELECTION-SCREEN.
    case sy-ucomm.
      when 'UCOM1'. " Based on the User Command Assigned above
        tab-dynnr = '0500'. " Assign a relavent Sub Screen as declared above
        WHEN 'UCOM2'.
          tab-dynnr = '0600'.
      ENDCASE.
    Cheerz
    Ram

  • Since installing Firefox 8 beta, can't move tabs around within the tab bar; can this be fixed without reverting to earlier version? Thank you.

    Before moving to Firefox 8, I could drag and drop tabs within the tab bar to reorder them, which was very convenient. Since installing the first beta of Firefox 8, the tabs don't move. Should I revert to an earlier version of Firefox? If so, which one? Thank you for any help with may favorite browser. Tom

    Tor Button addon was the cause in my case.

  • How to hyperlink to particular spry panel tab

    I have spry panel which has 3 tabs. Everythings works fine.
    When I load the page which has spry panel, the content of the
    first tab is shown which is fine.
    Now I am trying to make a link from another page which points
    to the page which has spry panel. I can easily put the link but
    what I want to do is when the link is clicked I was show the
    content of third tab instead of the first tab. How do I do this?
    Can someone please help me?

    Meant to do? Meant to do anything you can get it to do
    Put this in the head of your document:
    <script src="SpryAssets/SpryURLUtils.js" type="text/javascript"></script>
    <script type="text/javascript">
    var params = Spry.Utils.getLocationParamsAsObject();
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    </script>
    Link the SpryURLUtils.js per the first line in my quoted code.
    The second script bit above calls the variable and sets up a function. Don't mess with it, just use it.
    You'll have material like this in the foot of your page, just before the closing body tag:
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {defaultPanel: params.panel ? params.panel: 0});
    var Accordion2 = new Spry.Widget.Accordion("Accordion2", {defaultPanel: params.panel ? params.panel: 0});
    var Accordion3 = new Spry.Widget.Accordion("Accordion3", {defaultPanel: params.panel ? params.panel: 0});
    //-->
    </script>
    These help to make your widgets work. Don't worry if you don't have what I have exactly; I copied this from one of my sites. But the
    var TabbedPanels1 = etc. etc. line you WILL have. You will also have a second one if you have TWO sets of tabbed panels on your page. The first should be TabbedPanels1, the second will be TabbedPanels2, etc., etc.
    Here's a quote from my site, showing a "call" or link to widgets in other parts of the page. I set my whole site (except more recent pages) as ONE page, so this should be similar to how you set up your call:
    <div class="image_gallery">      <a href="?tab=5&amp;panel=3#TabbedPanelsTab&amp;Accordion1" title="Disappeared Children" target="_self"><img src="images/homeArgentina.gif" alt="Argentina website" /></a><br />
          <em>Website (early project):<br />
          &ldquo;Disappeared Children: We Search for Them&rdquo;</em></div>
    Note the <a href... tag. You don't need a page name, because you are staying on the same page. But this calls tab 5 AND panel 3. If you look at my page www.gravenimagedesign.net, look for the fourth image from the left on the top row on the "home" screen. Click on it, and see where it takes you.
    Remember that all is based on zero being the first tab, 0, 1, 2, 3, etc.
    Oops, gotta go. Let me know if you need more help with this. It is something that I have to dig back into my own code to remember.
    Best,
    Beth

  • How to link a specific panel with spry multiple element sliding

    How to everybody to the forum, I've searched into this forum but maybe this mine is a particular case...
    I've a html page with 4 different spry multiple sliding panels, named "primo" "secondo" terzo" "quarto", and all worked fine :-)
    When you go to this page the first you can see is "primo" (default).
    But the problem/question is this: If i want to send an email link to my page and want to see the "terzo" panel. how???
    I've try to search many examples but none one of them meet me.
    This is an example of this page called test.html
    Many thanks to all wants help me
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- Copyright (c) 2006-2007. Adobe Systems Incorporated. All rights reserved. -->
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Spry Multiple Elements Sliding Sample</title>
    <link href="http://labs.adobe.com/technologies/spry/css/samples.css" rel="stylesheet" type="text/css" />
    <script  src="http://labs.adobe.com/technologies/spry/includes/SpryEffects.js" type="text/javascript" ></script>
    <script  src="http://labs.adobe.com/technologies/spry/includes/SpryURLUtils.js" type="text/javascript" ></script>
    <style type="text/css">
    .demoDiv{
    height: 150px;
    overflow: hidden;
    .hiddenElement{
    display:none;
    /* Fix IE floating bug */
    position: absolute;
    top: 180px;
    </style>
    <script type="text/javascript">
    var observer = {};
    observer.nextEffect = false;
    observer.onPostEffect = function(e){
    if (this.nextEffect)
    var eff = this.nextEffect;
    setTimeout(function(){eff.start();}, 10);
    this.nextEffect = false;
    function pannelli(currentPanel)
        // The list of all the panels that need sliding
    var panels = ['slide1', 'slide2', 'slide3', 'slide4'];
    var opened = -1;
    // Let's check if we have an effect for each of these sliding panels
    if (typeof effects == 'undefined')
    effects = {};
    for (var i=0; i < panels.length; i++)
    if (typeof effects[panels[i]] == 'undefined'){
    effects[panels[i]] = new Spry.Effect.Blind(panels[i], {from: '0%', to: '100%', toggle: true});
    effects[panels[i]].addObserver(observer);
    if (effects[panels[i]].direction == Spry.forwards && currentPanel != panels[i])
    opened = i;
    //prevent too fast clicks on the buttons
    if (effects[panels[i]].direction == Spry.backwards && effects[panels[i]].isRunning)
    observer.nextEffect = effects[currentPanel];
    return;
    if (opened != -1)
    observer.nextEffect = effects[currentPanel];
    effects[panels[opened]].start();
    else if (effects[currentPanel].direction != Spry.forwards)
    effects[currentPanel].start();
    </script>
    </head>
    <body onload="pannelli('slide1');">
    <h3>Spry Multiple elements sliding</h3>
    <a href="#" onclick="pannelli('slide1');" value="Slide 1">SLIDE 1</a>
    <a href="#" onclick="pannelli('slide2');" value="Slide 2">SLIDE 2</a>
    <a href="#" onclick="pannelli('slide3');" value="Slide 3">SLIDE 3</a>
    <a href="#" onclick="pannelli('slide4');" value="Slide 4">SLIDE 4</a>
    <br />
    <div id="slide1" class="hiddenElement">
    <div class="demoDiv" style="background-color: yellow;">
    <h4>Primo</h4>
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
    diam nonumy eirmod tempor invidunt ut labore et dolore magna
    aliquyam erat, sed diam voluptua. At vero eos et accusam et
    justo duo dolores et ea rebum. Stet clita kasd gubergren, no
    sea takimata sanctus est Lorem ipsum dolor sit amet.
    </div>
    </div>
    <div id="slide2" class="hiddenElement">
    <div class="demoDiv" style="background-color: pink;">
    <h4>Secondo</h4>
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
    diam nonumy eirmod tempor invidunt ut labore et dolore magna
    aliquyam erat, sed diam voluptua. At vero eos et accusam et
    justo duo dolores et ea rebum. Stet clita kasd gubergren, no
    sea takimata sanctus est Lorem ipsum dolor sit amet.
    </div>
    </div>
    <div id="slide3" class="hiddenElement">
    <div class="demoDiv" style="background-color: magenta;">
    <h4>Terzo</h4>
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
    diam nonumy eirmod tempor invidunt ut labore et dolore magna
    aliquyam erat, sed diam voluptua. At vero eos et accusam et
    justo duo dolores et ea rebum. Stet clita kasd gubergren, no
    sea takimata sanctus est Lorem ipsum dolor sit amet.
    </div>
    </div>
    <div id="slide4" class="hiddenElement">
    <div class="demoDiv" style="background-color: green;">
    <h4>Quarto</h4>
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed
    diam nonumy eirmod tempor invidunt ut labore et dolore magna
    aliquyam erat, sed diam voluptua. At vero eos et accusam et
    justo duo dolores et ea rebum. Stet clita kasd gubergren, no
    sea takimata sanctus est Lorem ipsum dolor sit amet.
    </div>
    </div>
    <br />
    Test per collegamenti esterni<br /><br />
    <a href="test.html?">vai al pannello I&deg;</a> |
    <a href="#">vai al pannello II&deg;</a> |
    <a href="#">vai al pannello III&deg;</a> |
    <a href="#">vai al pannello IV&deg;</a>
    </body>
    </html>

    silemma wrote:
    else if (effects[currentPanel].direction != Spry.forwards)
    effects[currentPanel].start();
    </script>
    </head>
    <body onload="pannelli('slide1');">
    Change the above to
    else if (effects[currentPanel].direction != Spry.forwards)
    effects[currentPanel].start();
    var params = Spry.Utils.getLocationParamsAsObject(); //get the URL parameter
    if (params.slide) {  // if the slide parameter exists
        var slide = 'slide'+params.slide; // slide = slide+slide parameter
    } else { // otherwise
        slide = 'slide1'
    </script>
    </head>
    <body onload="pannelli(slide);"> <!-- open the nominated slide -->
    Then when calling the page use the following notation: http://localhost/test/test.html?slide=3 where ?slide=3 is the third slide
    I hope this helps.
    Ben

  • How to automatically open and close collapsable spry panels?

    I designed a collapsable spry panel in DW to open and close automatically, with a 10 sec delay, unless person clicks on tab to close immediately.
    The spry panel opens automatically, but will only close if i click the tab.
    Is there a way for the collapsable spry panels to close automatically?
    [Moved to Spry forum by moderator]

    Arnout,
    I feel certain the answer I need is in the reply you posted here, but I need a little more help to know exactly what to do.  I am using a collapsible panel to show and hide a series of onload panoramic photos near the top of my page.  What I want is for the collapsible panel to be open on some pages and closed on others and I want the animation of the panel closing to be seen too.  I'm thinking this should be achievable with some sort of onload trigger or something.  Currently I've gotten close to what I want by referencing two different .js files (one for the "open" panel state and another for the "closed" panel state), but this doesn't show the graceful animation of the panel closing.  Any ideas on how to achieve what I want?  Here is the url of the test site I'm developing:  http://www.gregdanpartners.com/lrre2/index.html
    Thanks in advance.
    Dan

  • YouTube links within a tabbed panel not stopping

    Within each tab of a tabbed panel, I have a YouTube link.  How to I make a YouTube playback stop automatically when the user changes tabs and starts a different video on a different tab?
    They will only see the 2nd video but hear both at the same time.

    This would need to add a little code snippet :
    http://stackoverflow.com/questions/8667882/how-to-pause-a-youtube-player-when-hiding-the-i frame
    http://stackoverflow.com/questions/5503833/stop-all-youtube-iframe-embeds-from-playing
    Thanks,
    Sanjit

  • In FF 34.0.5 I use to be able to click on a link within an e-mail and the link would open in a new tab; it now opens in the same tab; how can i change it back?

    I'm using FF 34.0.5 (I like it). I use to be able to right click on a link, within an e-mail, and the link would open in a new tab. Now when I click on the link it opens in the same tab replacing my e-mail.
    Example - a friend sends me an e-mail containing a link to a web site he thinks I'd like. I click on the link and go to the web site and then go back to the e-mail tab and reply to him. Now, when clicking that link, my e-mail disappears and is replaced by the new site.
    How can I fix this? When this happened once before I was told to change the 'value' for a specific 'preference name' through the about:config page.
    Can anyone help jog my memory?
    Thanks!

    Is this about clicking a link in an external program?
    You can check this pref on the about:config page for external links.
    * browser.link.open_newwindow.override.external (-1)
    If this pref has the default value -1 then browser.link.open_newwindow is used.
    * http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • I'd like to have web links open automatically in a new tab. How do I make this happen?

    1. When I open Firefox I have it set up that my gmail page automatically opens. When I want to go to another web site a new tab does not open but replaces my gmail tab. Then I have to use "back" or "history" to return to the gmail page. This gets difficult when I have been surfing the web & then have to go "back" thru numerous web pages. I'd like each web page to open in it's own tab. How do I do this?
    2. Also, in google help it stated: " If you want to open a link in a new tab instead, just right-click on the link and select Open Link in New Tab from the context menu. " I tried this & the "Open Link in New Tab" did not appear in the menu. Can you assist me in locating this menu?

    If you use Ctrl + left-click or middle-click a link then the link should open in a new tab.<br />
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • How open link in a new tab and NOT switch to it imidiately?

    How do I open a link in a new tab, without switching to it imidiately?
    I have written a custom start page (basic HTML) with rel=nofollow links, so they open in new tabs, but I have to hold the ctrl key to get it to open in the background/not swtich to it imidiately.
    I have also changed browser.tabs.loadDivertedInBackground to true (posted by blademasterbobo in a another question/answer)
    I also have "open link in new tab" add-on installed.

    [solved]
    'open link in new tab" addon was mucking it up. when I disable the addon, tabs open in the background.

  • Spry Sliding Panels--how to get it to repeat at the end?

    I have a beautiful working Sliding Panels set up--you can see
    it at:
    http://www.traditional-building.com/index-anim.htm
    (Scroll down to "Browse the Product Gallery")(and no, I did not
    design this attrocious, table-riffic site!). My question is, when I
    get to the last panel, how do I get it to automatically start over
    at the first panel? I can't seem to figure this out...
    thanks!

    Hi Kin,
    ljlindhurst posted this http://forums.adobe.com/message/97681# back in April 2008 without a positive conclusion.  It looks like the same conundrum that I posted a couple of days ago http://forums.adobe.com/thread/851757  :
    “  Spry SlidingPanels
    By default, after the last panel has displayed The Spry slidingPanels Widget causes the panels to zoom backward (visibly) through all the panels to arrive back at the first panel (sp1) to start the cycle again !?
    Well I don't see any sliding panels on line that do that these days, thank goodness, they all transition (continue) from the last to the first panel without a break or “reverse zoom” !    So what am I missing?  “
    Your reply to ljlindhurst started with the following line:
         “Since none of the geniuses have answered your question, I'll give it a try. :-P “
    Well I appreciate your humor and greatly respect all the work you do on the forums, as I suspect many of us do.
    So could you please revisit this item and have a stab at the javascript or code that will make this needed action work.
    Thanks in anticipation.

  • How to stop firefox from opening new ad tabs when clicking on a legit link or even a blank space?

    This has been going on for months now in every computer in my house. If I go to any legitimate website and click on a legitimate link (not and ad) a new tab opens up to either a bogus virus warning, an ad page, or a survey. I have reset Firefox to default conditions several times without any results. I have Kaspersky Internet Security 14 and ran a scan (no virus found). I have Hitman Pro and ran a scan again without results. I have also ran Malaware Bytes, and Norton Power Eraser to no avail.
    Mozilla has to do something about this as it is happening to may users.

    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    *https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware

  • Using Spry Panels & Browser BackButton

    Hi,
    I successfullly programmed opening a Spry panel from a remote
    link. However, I have run into another issue. Say a user clicks on
    a link appearing on a panel, for instance, with a tab index of 2
    (IOW, not the default panel), is taken to the page to which the
    link is referring, and then hits the browser back button to get
    back to the panel where he or she was. I know it is a redirect
    situation, but don't know how to program it. Can you all help me
    with this?
    Thanks,
    KT Pardue

    This document contains JavaScript code for a widget that no
    longer exists. If you don't remove
    the code, the browser might display JavaScript errors when
    loading the page. Would you like
    Dreamweaver to find all instances of this code for you?
    var sp1 = new Spry.Widget.SlidingPanels("PANELS",{
    duration:850, fps: 60, defaultPanel:0 });
    Yes No
    Just above the end-body tag I have the script:
    var Accordion1 = new Spry.Widget.Accordion("Accordion1",{
    duration: 350, useFixedPanelHeights: false, defaultPanel: 0 });
    The only ID I have is " <DIV id="Accordion1"
    class="accordian_div Accordion">" as a container for the panels.
    Should I
    change an ID name or a var name ? The SlidingPanels work
    fine. It's just that I'm using the "open recent files automatically
    on startup" sort of option and each page displays the above
    error and stops, until I reply to it, then continues to load the
    next file.
    - GR

Maybe you are looking for

  • Opening a .doc file in Pages results in Untitled document?

    Hi all! I've reinstalled iWork '06, along with the rest of my OS, and I've noticed something strange: if I set Pages as default to open .doc files, every time I double-click on a .doc file, Pages opens it in an Untitled document. Of course, when it c

  • Set background image in the Interface builder

    Hi, Is there a way to set a background image for a View controller through the Interface builder? I'm using story boards. If not please tell me how to do that programatically. I need to set this background image for all my UIs. Thanks

  • Clients not able to join more 256 nos

    Hi We have using wireless controller CISCO 2125 with 8 nos LWAP 1252, including AP's getting the IP from windows DHCPserver (172.29.70.0/23), when clients reaches 256 nos in controller , then further not able to join in wireless network. DHCP vendor

  • Working with Forte Projects

    In my workspace called Parent, I have created a project called Logger.prd and have specified the Project Directory as Parent/Logger/Debug. The Project Type is User Makefile Application. The Makefile Target directory is specified as ./ (dot-slash) to

  • Error when trying to uninstall blackberry desktop software

    I have a blackberry storm and I was having problems with the desktop manager and media manager. I have tried to uninstall it and I get an error 2738 and it says could not access VBScript run time for custom action and it will not uninstall. Please he