2 level tabs with Breadcrum

Hello,
I want 2 level tabs but I confused following thing.
2 tab set in Parent Tabs, parent tab set, Parent Tab Text, Tab Current for page, Breadcrum,
I need someone lead to end this.
Thanks in advance,
EB NY

Hi,
OK - I think I'd better try to explain tabs another way!
Simply put, tabs don't take you from a page, they take to to a page. When you have a page open on your screen, you see the tabs for all pages along the top of the screen. You can be on any page and click the tab for any other page.
So, if your example page had the tabs along the top, you would have tabs for Page 2, Page 3 and Page 4. You can be on Page 2 and click the tab for either page 3 or page 4. But, you could be on page 3 and click the tab for Page 4 as well. Of course, there could be other tabs, so you could go from Page 2 to Page 12 if there was a tab for that. So, if you want to pass a value from page 2 to page 4, you would have to ensure that the tab for Page 4 is only available to Page 2 and then you would still have to devise a means of passing the value anyway and, if pages 3 and 4 are the only pages the user should go to from Page 2, then you would have to hide the other tabs as well to leave them no choice but to go to 2 or 3. Tabs are not designed for this purpose - they are there to get you to another page.
Now, as I said before, when you click on a tab, the page is submitted and everything on the page is saved. Not only that, but any value saved is then available for use on any other page until such time as you clear out the cache for the saved page.
To give you an example of what I mean: [http://apex.oracle.com/pls/otn/f?p=46426:1] You will notice that I have no buttons on any of the pages 1, 2 or 3. Enter anything into the P1 Text item and click any other tab and repeat for pages 2 and 3. You will see, if at any time you go to Page 4, that all your values are displayed. Page 4 is referencing the page items on the other pages from their saved values in the session. Keep using the tabs to move between the pages and change any/all values and see that these are immediately available on Page 4. When done, click on the button on page 4 and then click the tabs between pages again - the data is now gone as the button clears the cache for pages 1, 2 and 3
So, I'm suggesting here that you don't need to "pass" any values as they are already available to the other pages because they have been saved into the session as soon as any tab is clicked.
Andy

Similar Messages

  • Changing width of a Sidebar in One Level Tabs with Sidebar.

    I am using a One Level Tabs with Sidebar.
    How can we change the width of the sidebar??
    Thanks,
    Deepak

    Sam,
    In the sidebar region of One Level Tabs with Sidebar., I am using LIST, so when I clicked the " show edit links" of LIST region, it's using template as Navigation Region. Then I did the following modification.
    Original Code
    <table class="t16NavigationRegion" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES# border="0" cellpadding="0" cellspacing="0" summary="" width="210" style="table-layout:fixed;">
    <col width="25" /><col width="85" />
    Modified Code
    increases the table width from 210 - 310 - nothings happens
    <table class="t16NavigationRegion" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES# border="0" cellpadding="0" cellspacing="0" summary="" width="310" style="table-layout:fixed;">
    <col width="25" /><col width="85" />
    increases the col width from 85 to 185 (table width remains same as 210) - sidebar region width increases (FINE)
    <table class="t16NavigationRegion" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES# border="0" cellpadding="0" cellspacing="0" summary="" width="210" style="table-layout:fixed;">
    <col width="25" /><col width="185" />
    decreases the width of table from 210 - 110 - nothings happens
    <table class="t16NavigationRegion" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES# border="0" cellpadding="0" cellspacing="0" summary="" width="110" style="table-layout:fixed;">
    <col width="25" /><col width="85" />
    decreases the col width from 85 to 45 - nothings happens
    <table class="t16NavigationRegion" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES# border="0" cellpadding="0" cellspacing="0" summary="" width="210" style="table-layout:fixed;">
    <col width="25" /><col width="45" />Also, what are thses two columns width for
    <col width="25" /><col width="85" />Thanks,
    Deepak

  • Help With Ora-19046:Out-of-line table cannot be shared by two top-level tab

    Hi!
    My tutor asked me to store and query the xml files in a "native" way in xml db. First I tried to register the schemas on which those xml files are based. There are about 30 of schemas asscociated with each other, and I have to use "FORCE" to register them , like this:
    BEGIN
    DBMS_XMLSCHEMA.registerSchema(
    'http://www.isotc211.org/gmd/metadataEntity.xsd',
    bfilename('ISOGMD', 'metadataEntity.xsd'),
    TRUE,
    TRUE,
    FALSE,
    TRUE,
    TRUE);
    END;
    Then no tables are created automaticly. And when I wanted to create a XML table based on thses schemas manually, it proped the error: ORA-19046:Out-of-line table cannot be shared by two top-level tab. This has confused me for about a week. Does anyone know what's wrong with the registration? Waiting eagerly on line! Thanks!

    First of all, i create a "filename.txt" that contains all my schemas' names. the names are:
    acquisitionInformation.xsd
    applicationSchema.xsd
    basicTypes.xsd
    catalogues.xsd
    citation.xsd
    codelistItem.xsd
    constraints.xsd
    temporalTopology.xsd
    topology.xsd
    units.xsd
    uomItem.xsd
    valueObjects.xsd
    xlinks.xsd
    there are 72 schemas. Then I register them using "force":
    GRANT EXECUTE ON utl_file to fld;
    create table test (
    fld1 VARCHAR2(50));
    declare
    isto_file utl_file.file_type;
    fp_buffer varchar2(4000);
    begin
    isto_file := utl_file.fopen('MYXMLDIR', 'filename.txt', 'R');
    loop
    begin
    utl_file.get_line (isto_file , fp_buffer );
    insert into test values(fp_buffer);
    Exception
    when no_data_found then
    exit;
    end;
    end loop;
    utl_file.fclose(isto_file);
    end;
    declare
    cursor my_cursor is select fld1 from test;
    v_name varchar2(50);
    begin
    open my_cursor;
    loop
    fetch my_cursor into v_name;
    dbms_xmlschema.registerSchema(
    schemaurl=>v_name,
    schemadoc=>bfilename('MYXMLDIR',v_name),
    local=>TRUE,
    gentables=>true,
    force=>true,
    csid=>nls_charset_id('AL32UTF8')
    exit when my_cursor%NOTFOUND;
    end loop;
    close my_cursor;
    end;
    at last, when I check the types generated during registration, I found that only a small number of types are automatically generated. When I try to create table manually ( based on certain element of one schema), it props errors, sometimes "31079. 00000 - "unable to resolve reference to %s \"%s\"" ", sometimes other errors.
    If I manually register them one by one from the base schema, then the registeration fail at some point. this is the script:
    BEGIN
    DBMS_XMLSCHEMA.registerSchema(
    'geometryAggregates.xsd',
    bfilename('XSD', 'geometryAggregates.xsd'),
    TRUE,
    TRUE,
    FALSE,
    TRUE);
    END;
    ERRORS
    22881. 00000 - "dangling REF"
    Is that something wrong with my schemas? I wonder how can i paste them here. there are 72 files.......

  • Problem with open in new window for second level tab

    Hi Friends,
    I am using 2 level tabs in my application. In my second level tab when i right click and select *open in new
    window* it is giving Page not found error. But for the first level tabs it is working correctly. How can i fix this so
    that either i can show the page when right click the tab and select open in new window or disable the right clicking
    for the second level tabs. Please help,
    Thanks
    Jeev

    Hi,
    I don't think its exactly possible, as tabs use javascript:doSubmit('somevalue'); and you can not open javascript in a new window, as javascript usually references the current page you are on, and since you open the javascript in a new window, it doesn't know what to reference. The most helpful thread I found was : Re: Open other tab in a new window (ATD reply, third from the bottom).
    Ta,
    Trent
    Edited by: tr3nton on Dec 3, 2009 4:19 PM; Hari beat me to linking to the correct thread, my bad.

  • Problem with 2 Level TAB

    I have created 2 level tab
    Home - welcome / news
    Products - products / cheese
    The 1st tab (2 sub-tabs) is working fine..
    when I click sub-TAB called Cheese on the 2nd tab (Products), it's not working....
    Can some one pl have a look and let me know what needs to be fixed....
    workspace - Deepak Jha
    user/pass - guest / demo
    Application - [53991 - TEST]
    http://apex.oracle.com/pls/otn/f?p=53991:1
    Thanks,
    Deepak
    Edited by: Deepak_J on Feb 12, 2009 8:05 PM

    Thanks for reminding me...
    I will post this in APEX forum...

  • Filtering top level tabs based on user attributes

    Hello everyone ~
    I've been creating role and workset filters based on the Webinar demonstration given by Marion Schlotte (<a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/17968de1-0a01-0010-1f9f-c090fbc7001a">Filtering Role and Workset Content for Developers</a>) and things have been going well.  I've been assigning the filter to a role (an entry-point role) and then filtering what worksets the user sees at the second level navigation.
    Now what I'm trying to do is filter what top-level tabs the user sees using this filter.  So I assigned the worksets in the role as entry points, instead of the role itself being an entry point.  However, the filter doesn't work now.  I don't see any of the worksets in the top level navigation at all.  I also don't see any errors in the logs.  All of the messages I have logged during the filtering process are logging as normal, and I don't see any errors being thrown.  But still the top-level tabs for my worksets don't appear.
    Has anyone been testing with this functionality?  Why would setting the worksets as entry points cause the filter to no longer work?  Has anyone tried this, or have any ideas?
    Thanks for your help,
    Fallon

    Hi Will,
    I'm thinking on using this filtering approach to solve another problem... But for that, I need this filtering to work based on URL entered, not on the logged in user.
    I was thinking about implementing the method
    getObjectInstance(obj, name, nameCtx, environment)
    from
    FilterDemoCountryFactory
    to perform the filter based on URL (from context or environment). Do you know if this information (URL) is available in Context ou in Environment (hashtable)??
    Thanks in advance.
    Best regards,
    Raphael

  • APEX 2-level tab App. not showing tabs in IE 8

    Hi everybody!
    I've created a 2-level tab application (first it was APEX 3.2 and I upgraded to APEX 4 but it's still happening) and I can only see the parent tabs in Firefox, cause in Internet Explorer 8 they won't show, both over Windows XP or 7.
    The strange thing is that it won't display them in the default page but once I manage to navigate to another page they show as long I'm standing on that other page of the App, so it would seem a tab config. problem, though Firefox shows it right!
    Would this be a compatibility problem or bug, or am I just coming across a developing problem that hopefully Firefox is managing to understand anyway? Following a summary of my App. tab setup in case it was helpful:
    UTILIZATION:_
    Tab Set Page References Tab Name Tab Text Tab Page Parent Tab Set
    TS1 9             T_SERVICES             Services             1              TS1
    T_COUNTRIES          Countries            6              TS1
    T_ENVIRONMENTS    Environments      7              TS1
    T_OWNERS              Owners              8              TS1
    T_SERVERS              Servers               9             TS1
    T_TYPES                 Types                10             TS1
    T_PRODUCTS           Products            11             TS1
    T_REQUIREDSTATUS Required Status  12             TS1
    T_REPORTS 2 T_SUMMARYCHARTS  Summary           16             TS1
    Dependencies           Dependencies    18              TS1
    MANAGE TABS:_
    Tab Set: TS1
    Tab: Services
    Page 1. Service Maintainer - Default Page (2)
    Tab: Countries
    Page 6. Country Maintainer - Default Page (2)
    Tab: Environments
    Page 7. Environment Maintainer - Default Page (2)
    Tab: Owners
    Page 8. Owner maintainer - Default Page (2)
    Tab: Servers
    Page 9. Server Maintainer - Default Page (2)
    Tab: Types
    Page 10. Type Maintainer - Default Page (2)
    Tab: Products
    Page 11. Product Maintainer - Default Page (2)
    Tab: Required Status
    Page 12. Required Status Maintainer - Default Page (2)
    Tab Set: T_REPORTS
    Tab: Summary
    Page 16. Chart - Default Page (2)
    Tab: Dependencies
    Page 18. Dependency Tree - Default Page (2)
    As you can see every tab has a number (2), which means that all pages should display the 2 levels of tabs and there's not conflict, like in a (*) case.
    Thanks.

    Many thanks for answering quickly!, but I created the tabs using blog examples in fact, and as I stated before, under Firefox it's displayed as it should be. My problem is on Internet Explorer, versions 7 and 8 on Win XP or 7.
    Anyone having this same problem with tabs on IE?

  • Theme 13, One Level Tabs and IE 7 Blues

    Hi all,
    I'm using Theme 13 with many "one-level tabs" pages. Using IE6, everything works just fine.
    Using IE7, if I hover over a control on a one-level tabs page (tabs, fields, checkboxes, the DHTML images that go with DHTML image list with sublist, etc.), the controls make a copy of themselves about a quarter-inch below their original spots.
    Clicking a blank area on the page or refreshing the page temporarily clears up the situation on that page. But go to another tabbed page and the problem reappears. Come back to the original page and it reappears again. Essentially I have to click a blank area of every tabbed page to make the page work right.
    Has anyone else seen this behavior? Any solutions?
    Thanks!!
    John

    I have an update on this situation. Running it on IE v7.0.5730.11 on XP also works fine. The two machines I tried it on that are having the problem are both IE7 on Vista (I don't have the exact IE7 version but I'll get it). Also appears to work fine on Firefox (on XP...haven't tried FF on Vista - I'll have to get permission from the machine owners).
    Hope this information is helpful in diagnosing what may be wrong.

  • In Material Master creation (MM01) organizational levels tab.

    Hi,
    In the transaction MM01 after selecting the views i choose the organizational levels for selecting the plant and the storage location, But here i am not able to see the plant field, and only storage location filed is there for me to key in the data how do i recover this for the plant option in the organizational level tab.
    I checked this in OMS9 and OMSR but i could not able to identify the modification for the field that i have done earlier.
    Request you help how to make that visible again to the transaction MM01 and MM02.
    Regards,
    Deepak GS

    1. I have entered transaction OMS9
    2. Entered the Field selection group as 2
    3. Below the fields option 3 RM03M-WERK280  (Plant)  i double clicked and checked there is hide option.
    4. I came back selected the T001W - Name1 (Name)     I double clicked that in 34 , 35 , 54 was enabled with hide i changed to opt entry but still it seems to be the same.
    5. I came back again and below in the field selection tab checked for the MM01 and MM02 transaction as well as fert,halb,roh as opt entry
    It did not work.Kindly guide me if there is some other option available for this to revoke the plant option.
    Any help would be really appreciatable.
    Regards,
    Deepak GS

  • 2 level tabs in APEX 4.1

    Hello,
    I created a one level tab application in APEX 4.1 and I realized that there will be too many tabs so I want to make 2 levels of tabs. One level would more general like : Info, Operations, Reports, etc, and the second level with actual pages. Is there a way to convert my one level tabs application to 2 level tabs applications.
    Thanks.

    Sure - it would be a two step process
    1 - Modify your theme usage
    - Shared components - themes - edit theme
    - Change the default page template to use on of the two-level-tabs templates
    - Ensure your desired pages either use the application default template or the relevant to level tab template
    2 - Modify your tabs
    - Shared components - tabs - manage tabs
    - Add your different levels of tabs and ensure page assignments are relevant
    - You may need to edit the properties of some pages to ensure they're using the right tabset.
    I've found two level tabs to be a little ... frustrating to set up - not quite as intuitive to use and setup. But in essence, not difficult to convert from one level to two.
    Scott

  • Clear cache of 2nd level tabs

    Hello,
    I have a question related to clearing the cache in a two level tab application structure. If you look at the examples application of Denes Kubicek, you see that he uses a two level tab structure. The horizontal bar below the header is level 1 and the left 'menu-bar' is level 2.
    I've also tried to implement this, because I think it's a real nice way to offer a good navigation structure. But I haven't found a good way to clear the cache of a page that is opened when someone clicks on a 2nd tab-level. Anyone an idea? Maybe Denes himself can help me out?
    Thanks!
    Jacob

    I think you are referring to standard tabs as second-level and parent tabs as first-level. I always think of them the other way round. Okay, what you need to do is create an application process that fires (by default, for every page view) conditional on the request being the tab name (T_ORDERS, for example). The process firing point must be On Submit - Before Computations and Validations. In this process you can determine the page being submitted with the standard tab using :APP_PAGE_ID and the name of the tab submitting the page, again, using :REQUEST. Then the process can call apex_util.clear_page_cache to do the cache-clearing you need.
    Scott

  • Content of second level TAB's not visible

    Hi All,
    I have designed a page have nested TAB's. When we click to on any first level tab, then the contents on the first second level tab is not visible. Neither there a Hyperlink to the title of that tab. How can the contents be made visible.
    I am using oracle portal version 3.0.6.6.5
    thanks

    Hi,
    unfortunately the behaviour got even worse in 3089. The behaviour Girish is describing is still there in 307. By the way, the content can be made visible by click the second subtab and then clicking the first subtab again (nice workaround huh..) Another way is to add a subtab and display it as the first subtab and give it a label like 'Make your choice..'
    So I was anxiously waiting for 3089 because I too was told everthing would be fixed but to my astonishment in 3089 (upgraded and fresh install) the subtabs (displayed as a page portlet that is) do not work at all!!!!!!!!! Got TAR 1542074 logged for this. The only thing at this moment which gives an acceptable appearance is creating subtabs on the page itself (so without a subpage displayed as a portlet) and assign active/inactive images to the tabs. But this way you are spending more time working with Paintshop than with Portal. Please tell me that I am wrong about this (I hope I am...), but otherwise this really goes beyond my bug/new product tolerance level.
    Tony

  • Switch between one level and two level tabs

    Hi,
    In my application I'm having many pages manages with tabs.
    Some tabs should have sub tabs other will have none.
    For example Page 1:
    ______________________________________| HOME* | MASTER DATA | TEST |_____
    Page 2
    ______________________________________| HOME | MASTER DATA* | TEST |_____
    | M1* | M2 | M3 |
    Page 3
    ______________________________________| HOME | MASTER DATA* | TEST |_____
    | M1 | M2* | M3 |
    Page 4
    ______________________________________| HOME | MASTER DATA | TEST* |_____
    | T1* | T2 |
    Like you can see Page 1 hast no sub tabs and only the parent tab should be shown (normally this would be One Level Tab Template and for the others it's Two Level Tab Template).But I didn't get it working. I've tried to following:
    Setting page 1 to one level and creating a parent tab set with all required labels will display OK. Creating page 2 with new parent tab set and tabs and two level template.
    Will not show not page 1 parent tab when accessing directly. Access from page 1 will throw error message: "could not find item (123455) on page."
    I don't like to have something like this for page 1, because there twice shown Home, for one page ...
    _________________________| HOME |_______
    | HOME |
    How can this be done in ApEx are there any tricks?
    Thanks
    chrissy

    Chrissy,
    Create a page template as a copy of your two level tabs template and simply remove
    #TAB_CELLS#
    Assign this page template to your page 1.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Org level tab values

    Hello,
    In one of the single roles, field BUKRS was individually maintained and hence there is a mismatch between the values in the org level values tab. To make it uniform, how do I reset BUKRS so that it is filled with values from the org level tab? I did a select all, delete of the BUKRS field values then saved and generated the role but the values are not populated.
    Any inputs is appreciated.
    Mani

    Hi,
    If you delete the BUKRS filed values from the object using the delete button that will show up only in the manually maintained object BUKRS filed value.  Delete the same using the trash icon.  Immediately the org level value will popup in the BUKRS orgfiled. (No need to generate or save the role to see the BUKRS value from Org level)
    As you have mentioned you have "select all " no such option. individually you have delete for each BUKRS filed in the objects if you maintained manually.
    Regards,
    Shrinivasan. KV

  • Wide report causes standard tabs in two-level-tabs to move

    I know that sounds odd. So, if you have a large (wide) report, that spans the browser window, and you resize the window, the tabs will move to the right, eventually right out of the window. Very odd.
    I have Apex 3.0.0.00.20. I have a simple report region with a query that has over 20 columns. The data isn't really meant to be read, there is a download to spreadsheet link that people will use. However, there is also a two-level tab system in place. Parent tabs at the top (on the right) look fine. The standard tabs, below are left aligned and look good on all pages except this one. If the window is wide, fitting the entire width of the report, then the tabs align on the left. That is very wide, filling up more than my widescreen monitor on my two-monitor setup. For users on a single smaller monitor, they cannot size it that large, and if the window is narrow enough, the tabs are actually off the screen. You have to scroll right to see them. It's the strangest thing. But, it's a pain, since they need to use these.
    Anyone see this? Any ideas how to prevent those tabs from moving and staying anchored on the left?
    Thanks

    Sounds like the result of a layout based on nested tables, which are expanding to accommodate the wide report content.
    Solution would be to move the standard tabs region or the report region to another region position, or change the page template so the tabs current region position is not contained within a table that also contains the table containing the report region position.
    This should all become clear if you view the page in Firefox and outline the tables using the Web Developer Toolbar...

Maybe you are looking for

  • Firefox 13.0.1 appears incompatible with Yahoo mail (process hog)

    I have 2 MacBook pro 17s. Yesterday I upgraded to Firefox 13.0.1 in both of them. The newest one (about 2 months old) became extremely sluggish (20 minutes to send an email and took forever (several minutes) to switch between Firefox tabs). The old M

  • Code generation: from resultset to Java Object

    Hello all: Is there any utilities that can convert the ResultSet to a list of Java objects? I think that's doable, since we can get the metadata from ResultSetMetaData anyway, which provide a means to construct the internal properties of a java objec

  • What value does CROP have in editor if you cannot define output document size and document resolution

    Cannot define document size in EDITOR or output resolution. Document can only be defined as RATIO and output is fixed at 300. This problem does not allow you to edit in EDITOR then crop to a specific size so you don't know what the x,y dimension will

  • Re: help.... built in isight on macbook

    I am experiencing the same problem on my MBP. I was in the middle of a video chat using Skype, when the window froze, the green status light went out, and my conversation got cut off. Now, the camera is not accessible by any program. I too get the ca

  • Why does my iMac not recognize my iPod nano?

    I recently purchased an iPod nano, with the touch screen, for my wife. Obviously she wanted to immediately connect it to our iMac 27" and transfer her music files. But the iMac does not recognize the iPod, whatever we try. It does not turn up in iTun