Tabs in a page

Hi,
I am trying to develop a page similar to APEX Dev environment's "Region Definition" page which has various regions (like Identification, User Interface, Source...etc) and just above these regions, it has a list of tabs.
Initially the tab named "Show All" is highlighted and hence all the regions are shown. User can click on any of the tab and corresponding region is displayed.
How can I implement such tabbed navigation?
~Ketan.

Any ideas for this please?

Similar Messages

  • When I click on the tab with a + on it, located next to the active tab a new page does not open. If I click on "New Tab" in the File menu a new tab does not ope

    When I click on the tab with a + on it, located next to the active tab a new page does not open. If I click on "New Tab" in the File menu a new tab does not open.

    Hi jcatx2013, we don't really have enough information on your system to make specific suggestions...
    Could you test in Firefox's Safe Mode? That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • Navigation to specific tab within a page

    I have an event set up to navigate to a certain page however this is not good enough for me. I want to navigate to a specific tab within that page. Is there a way to do this?

    I'm not entirely sure I understand what you want, but if you want to simply go directly to a specific tab, you can use it's direct access URL. If you login to portal and bring up Oracle's portal help (use the help link in the upper right on any of the default pages), search for direct access URL and they do a nice job of explaining how to reach a page, tab, subpage, item, etc.
    To access a subtab called mytab1 on the mytab tab in Portal release 2 or portal 10g prior to 10.1.4:
    http://<hostname>:<portnumber>/pls/portal/url/page/<pagegroupname>/<pagename>/mytab/mytab1
    (Note that the names needed for the url are the "Name" field when looking at properties, not the "Display Name")
    The URL structure has changed in 10.1.4.
    Rgds/Mark M.

  • Linking to a Tab in another page which has 3 tabbed panels

    Hi
    I have created a page which has three tabbed panels.  The first is a horizontal Tabbed panel with two tabs.  Each of these tabs has a vertical tabbed panel with 4 tabs in each.
    I want to be able to link from another page to the 2nd horizontal tab and the first vertical tab on that page.
    If I use the URL  ?tab=1, the link takes me to the second horizontal tab but also then to the second vertical tab.
    I have tried the following
    giving the target tabs the same id and targeting ?tab=news
    setting the url to ?tab=1&tab=0
    setting the url to ?tab=TabbedPanel1.tab1&TabbedPanel2.tab2
    but none of these work.
    Javascript is not my thing (as you have probably guessed!).  Is there a way that I can target any combination of tabs on one page through the URL?
    Any ideas, much appreciated.
    Thanks

    Data:
    Tab on main tabbed panels = primetab
    Tab on nested tabbed panels = secondtab
    URL Link = myPage.html?primetab=2&secondtab=2
    Markup:
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet">
    </head>
    <body>
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div class="TabbedPanelsContent">
            <div id="TabbedPanels2" class="TabbedPanels">
              <ul class="TabbedPanelsTabGroup">
                <li class="TabbedPanelsTab" tabindex="0">Tab 1.1</li>
                <li class="TabbedPanelsTab" tabindex="0">Tab 1.2</li>
              </ul>
              <div class="TabbedPanelsContentGroup">
                <div class="TabbedPanelsContent">Content 1.1</div>
                <div class="TabbedPanelsContent">Content 1.2</div>
              </div>
            </div>
        </div>
        <div class="TabbedPanelsContent">
            <div id="TabbedPanels3" class="TabbedPanels">
              <ul class="TabbedPanelsTabGroup">
                <li class="TabbedPanelsTab" tabindex="0">Tab 2.1</li>
                <li class="TabbedPanelsTab" tabindex="0">Tab 2.2</li>
              </ul>
              <div class="TabbedPanelsContentGroup">
                <div class="TabbedPanelsContent">Content 2.1</div>
                <div class="TabbedPanelsContent">Content 2.2</div>
              </div>
            </div>
        </div>
      </div>
    </div>
    <script src="SpryAssets/SpryTabbedPanels.js"></script>
    <script src="SpryAssets/SpryURLUtils.js"></script>
    <script>
    var params = Spry.Utils.getLocationParamsAsObject();
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.primetab ? params.primetab : 0});
    var TabbedPanels2 = new Spry.Widget.TabbedPanels("TabbedPanels2", {defaultTab: params.secondtab ? params.secondtab : 0});
    var TabbedPanels3 = new Spry.Widget.TabbedPanels("TabbedPanels3", {defaultTab: params.secondtab ? params.secondtab : 0});
    </script>
    </body>
    </html>
    The highlighted parts denote the markup required over and above the original markup for tabbed panels, placing JS at the bottom of the document is a peculiarity of mine an is therefore not a necessity.
    Gramps

  • Link to specific tab on another page but don't anchor

    Hello, I used this tutorial to link to a specific tab on another page:
    http://foundationphp.com/tutorials/spry_url_utils.php
    It works great, except I don't want to go directly to the tabbed panel. I want the particular tab to be active, but the page should load as it normally does. So the user should always be at the top of the page when it loads.
    This is the link code:
    <a href="registration.html?tab=1#form">
    As you can see, #form identifies the tabbed panel, but it also directs the link where to go. I only want to use it as an identifier, not as a navigator as well.
    Thank you.

    FShea31 wrote:
    Hello, I used this tutorial to link to a specific tab on another page:
    http://foundationphp.com/tutorials/spry_url_utils.php
    It works great, except I don't want to go directly to the tabbed panel. I want the particular tab to be active, but the page should load as it normally does. So the user should always be at the top of the page when it loads.
    This is the link code:
    <a href="registration.html?tab=1#form">
    As you can see, #form identifies the tabbed panel, but it also directs the link where to go. I only want to use it as an identifier, not as a navigator as well.
    Thank you.
    Remove the hash part of the URL parameter and just open the tab in the constructor
    <a href="registration.html?tab=1">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1",
    {defaultTab: params.tab ? params.tab : 0});
    I hope this helps.
    Ben

  • How to set new tabs to home page when opened

    I have no problem setting up my home page, but new tabs open as blank pages. How do I set up Firefox to open new tabs to my home page, when I manually open a new tab?

    "Donations" to add-on developers are not required. Add-on developers do appreciate donations from users since they devote their time and efforts '''''free of charge''''' to develop the add-on(s). Donations also help pay for costs incurred in operating a website and some have online help forums to help their users with support questions.
    Tab Mix Plus is a great add-on, I use it and like it, but it is a bit "heavy"/large to install for just that one function. Tab Mix Plus performs many functions related to tabs and has many, many options that you can set related to tabs, including the one that your requested.
    <u>An add-on that is much smaller and is designed to perform that one function</u>, opening a tab with the page you specify, is New TabURL:
    *New TabURL: https://addons.mozilla.org/en-US/firefox/addon/newtaburl/
    *After installation and restarting Firefox
    *#Open the options (Add-ons > Extensions, click Options next to New TabURL)
    *#Set your options and/or enter the URL you want to open in new tabs
    *#Click "Save"
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • In the new tab yahoo search page is opening everytime. How can I get rid of it and just get a blank page instead?

    whenever i am opening a new tab - yahoo search page is opening up. How can I get rid of this. I want a blank page to be open up instead of yahoo search page in new tab.

    This might be a feature of the Yahoo toolbar. Can you live without it? To disable or remove the toolbar, use
    Tools menu > Add-ons > Extensions category
    After restarting Firefox, do new tabs become blank again?

  • Specifying access settings for tabs in portal pages (rel.2)

    Hello
    I'm having a problem with specifying access settings on tabs.
    I've enabled "Enable Item Level Security" on the page properties.
    I've created a new tab on the page, which i've added view privilegies for a specific group, selected specify access settings and unselected "Display Tab To Public Users".
    When this is done, the page should only be wievable for members of the group i selected and myself.
    But this isn't happening. Users that aren't in the selected group can still view the tab.
    What is happening here?
    Regards
    Per-Jarle Sfther

    Per-Jarle,
    Are you sure that the users are not part of a group that is included in the group you gave access to on the tab?
    Rich

  • QM Desktop - Report tab displays blank page

    Hi all,
    I'm currently running UCCX7.0(1) with QM2.7(3) and i'm facing the following issue.
    Thru QM Desktop - Report tab, an IE page will be displayed to show the available reports that we wish to run. It's trying to launch the following link https://<ip.address>:8448/QMR/Login?signature=49B7E14D173A2...E10D664 However a blank page is being displayed.
    I remember seeing this a while back where it's something to do with the report templates, files, etc missing / not installed correctly.
    a) which folder is storing the report files?
    b) is there a way to load the missing files without reinstallation?
    c) any other reason why this is happening?
    Thanks!
    -JT-

    Quick update
    I manually change the url from :8448/QMR/xxx">https://:8448/QMR/xxx to :8088/QMR/xxxx">http://:8088/QMR/xxxx and this time the QM Reporting System page is displaying according.
    I don't believe there was any option during install/postinstall that enable us to specify if we want to use SSL or not. Any ideas?
    Thanks!
    -JT-

  • Safari is adding a tab for each page visited--how to stop or clear?

    Safari is adding a tab for each page visited--how to stop or clear?

    Each tab, when selected, has a small x on it for deleting--Apple Store

  • App tabs and web page tabs not saved when Apple Mac is powered down

    Using Firefox with Apple Mac running OS X v 10.7.1 and Parallels 6, and Windows Vista as a virtual computer. Have Firefox 6.o installed on the Mac and Firefox 6.0 for Windows installed within Microsoft Vista running under Parallels 6 as a virtual machine.
    Issue 1) Within Mozilla on the Mac whenever I power down and restart the computer all my app tabs and web page tabs are lost except for my home page, even though I have set up Firefox preference to remember my open web pages/tabs.
    Issue 2) Within Firefox running within Vista on the virtual machine my web pages are remembered but I cannot figure out how to create a app tab.

    Tabs are only saved if you close (Firefox > Quit) the Firefox application while those tabs are still showing. If you close a window and still have the menu bar visible then you wont reopen already close tabs. You may need to be able to reopen the three last closed windows via History > Recently closed Windows.

  • In LiveCycle Designer ES4 how do you remove tabs within a page once they have been created?

    In LiveCycle Designer ES4 how do you remove tabs within a page once they have been created?

    Emma,
    Take a look at the troubleshooting tips on this page from the Infosemantics website:
    http://www.infosemantics.com.au/adobe-captivate-widgets/drag-and-drop/troubleshooting-widg et-issues
    Pay particular attention to the section entitled: "My drag and drop question works correctly sometimes, but not other times. "
    From the appearance of your slide, it looks like you may have removed some of the components from the quiz slide that are necessary for it to function correctly.  Try the test that this section of the troubleshooting suggests so that you can see if this is the case.  If it turns out that you have deleted some items, you'll need to recreate your quiz slide to get them back again.
    Hope this helps.

  • Firefox loads, but wont load any web pages. tabs say "untitled". page is blank below. uninstaled and reinstaled no change. problem came after recent update. any help?

    firefox opens, but wont load any web pages. tabs say "untitled". page is blank below. uninstaled and reinstaled- no change. problem came after recent update. any help?
    ps. IE works as usual

    Problem solved from prior post. Firefox had become blocked somehow by McAfee firewall. Set to full access. Now works perfectly.

  • Open new tab with home page displaying

    i want to know if when you open a new tab your home page can automatically appear instead of a empty page. How can you do this? thank you

    You can do that by using an add-on such as:
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage
    Another way of opening the home page in a new tab is to middle click on the home button in the navigation toolbar.

  • Firefox always launches with three tabs -- my home page, a month old site from Slate and Huffington Post. Even uninstalling and reintalling doesnt solve problem.

    Every time Firefox is launched, it opens with three tabs -- my home page, a month-old age from the slate website and the home page from the huffington post. EVERYTIME. I have tried uninstalling and reinstalling Firefox and the problem persists.
    == This happened ==
    Every time Firefox opened
    == May 15, 2010

    Hello Kenneth.
    See this article to see if you have those three tabs set as your home pages: http://support.mozilla.com/en-US/kb/How+to+set+the+home+page

  • Activating a Tab on a Page

    You can use a direct access url to open a certain page. Is it possible to activate a certain tab on this page by using a URL?

    Currently not possible. Planned for a future release.

Maybe you are looking for

  • Mini display port to hdmi problem

    Hi everyone, hope your day is going well. I have a mid 2010 13 inch macbook pro. When I connect it to a hd tv with a mini displayport to hdmi adapter, my tv does not detect it. However, my macbook's screen turns blue even though the tv does not show

  • How can I recover email from library file?

    I tried to convert from incoming POP to IMAP (per instructions from Verizon).  I then saw thousands of emails in my inbox disappear.  They reside in my library folder with a different name:  Library/mail/POP-(my email address/INBOX/messages/.   I can

  • FF4, Win7 - is there a way to pin the History to the left side of the page, rather than having it open in a whole 'nother window?(Where it used to be!)

    FF4, Win7x64 - Is there a way to pin History to the left side of the FF page - the way it was - rather than having to click Bookmarks and a new window opens and then one must click history etc etc etc-

  • M93p-10AB 3 Displays

    We got one these M92p's for a customer with 3 identical monitors. The M92 has a VGA, a DP and an HDMI connector. All works fine with the VGA plugged in and the DP connected via a DP to vga adapter. when we try to add the HDMI port via an HDMI to VGA

  • HTTP/HTTPS and Java

    Why is the difference between the following classes? Why do different versions of these classes exist the way they do? (This question is based off of Sun's Java 1.3.1 release). java.net.HttpURLConnection <==> sun.net.www.protocol.http.HttpURLConnecti