JQuery tabs in the apex

Hello

I followed the https://forums.oracle.com/message/4425187#4423187 thread to create templates for jquery tabs and has been a success. However, I have a question, i.e. default tab1 is in open State. Can anyone tell how to change the status of the two locking tabs when loading?

Apex News:

Request Express 4.2.2.00.11

Details of DB - database Oracle 11 g Enterprise Edition Release 11.2.0.1.0

Architecture of Web - APEX listener Server

Browser (s) and version (s) used - Chrome version 24 / Firefox version 3.6 and 22

Thanks in advance!

Do you want to say that you do not want any tab is selected when the page shows up first?  interesting.

You do not want to remove these classes from the tab: ui-tabs-selected and ui-State-active.

Maybe with the code like this.

$("li.ui-state-active").removeClass ("ui-tabs-selected ui-State-active");

And you will need to hide the content area by adding "ui-tabs-hide".

This probably better by targeting only the region that needs to be hidden by building its id with this syntax #REGION_STATIC_ID#-tab-#SUB_REGION_ID# .

$("jqtabs-tab-subTabID").addClass ("ui-tabs-hide");

Or if you don't know that, then their target with one class, they all get as ui-tabs-Panel

Thank you

-Jorge

http://rimblas.com/blog/

Tags: Database

Similar Questions

  • Need help using the tabs of the apex to the universal theme.

    I tried using the enkitec boards to create tabs in page apex.

    But I'm unsucessfull and I used the apex as the version 5.

    The theme that I use is universal theme.

    https://www.enkitec.com/Apex/f?p=15300:30310:0:

    Also I'm tired the method too to create tabs below

    Creation of a region of the tab within a page in the APEX

    It's like

    In the HTML header, I'll add the code below

    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/redmond/jquery-ui.css" type="text/css" /> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script> <script type="text/javascript"> $(function() {    $("#tabs").tabs();    $x("tabs").appendChild( $x("tabs-1"));    $x("tabs").appendChild( $x("tabs-2")); }); </script>

    Then I'll create 3 region.

    Region 1 > > > create a HTML region (REGION MODEL = MODEL number) and add the code below in the SOURCE of the REGION

    <div id="tabs"> <ul>    <li><a href="#tabs-1">Employee</a></li>    <li><a href="#tabs-2">Chart</a></li> </ul> </div>

    Region 2 > > > create HTML region... Add two fields to the region now, edit the region

    Add the code below in the header of the region to REGION 2

    <div id="tabs-1">

    Add the code below in the bottom of the region to REGION 2

    </div>

    Region 3 > > > create HTML region... Add two fields to the region now, edit the region

    Add the code below in the header of the REGION 3 region

    <div id="tabs-2">

    Add the code below in the bottom of the REGION 3 region

    </div>

    Example: http://Apex.Oracle.com/pls/Apex/f?p=12060:7

    I used exactly the same code... except that my region 2 contains a REPORT instead of two text field and region 3 GRAPHICS instead of text field.

    Kind regards

    Shijesh

    -------

    Please reward the answer if it was useful / correct


    I used the enkitecs method to create tabs.

    Tabs have been created, but the fields were visible inside.

    Will soon be replicating the scenario of apex.oracle.com

    Maybe someone can help.

    At the same time if there is no easy way to create tabs in apex page please let me know.

    Thank you

    Paul

    Hi pauljohny100,

    pauljohny100 wrote:

    I'd like to learn more about the region view selector

    You have a good resource on it.

    Selector display region is type of region, which shows the navigation links in the form of hyperlinks button for regions where the attributes of the region-> region selector display are set to Yes. Œuvres similar to jQuery tabs.

    Reference: ApEx 4.0 region selector | iAdvise blog (it's blog when it was introduced first in APEX 4.0)

    I have not found any Oracle Documentation on this, but it's taken APEX oracle supported the region type.

    You will find that this implemented in various packaged for example P-Track applications.

    Kind regards

    Kiran

  • progress bar jQuery UI in the apex report rows

    Hello

    Anyone know how I can display the progress bar from jQuery UI in each line of a report to the Apex 4? Each measure must the length according to the value in one of the columns.

    Thank you.
    Andy

    http://www.talkapex.com/2009/06/displaying-percentage-bar-in-apex.html

    Does that help?

  • How three type of the structure of the tab in the apex

    Hi all

    I have a requirement where I need to organize the tabs. but the levels are 3.

    Apex provides only 2 level tab structure, I am trying to host 3 rd level with using the left menu, which can be shared by all pages.

    or

    I'm looking for level3 navigation... which makes the user to move easily from the application.

    Please post your suggestions how.

    Gregory,

    Lists are created Home > Application Builder > Application 99999 > shared components > lists. Each list entry then target a page. Once your list is built with all the necessary entries, add to the list as a region to each page that are targets of the entry in the list. Generally, I put my list at the top of the page by giving it a low sequence.

    In each entry of the list, set the entry of current list > list input current for the Condition on the same page as the target. This will highlight the entry from the list when you click it.

    When you set your list, play with the model list to determine which best meets your needs and requirements. List button model provides that a 3rd level of the navigation and the list of vertical side bar provide navigation to the left of your page.

    On the secondary tab that calls one of your goals from the list, it will take change in the section tab also run for Pages so that the secondary tab keeps up-to-date when navigating through the list. This parameter must include all of your pages list target, separated by commas, IE 1,2,3,4...

    Jeff

    Published by: jwellsnh on October 28, 2009 09:00

  • replace only the first and the second comma by TAB in the apex using using jquery

    All,

    I'm generating models of string in the text box in my apex as page == > 23232,445454, «454545,7878,988978, 3r3e»
    and I want to replace only the first and the second comma with TABS so I get like == > 23232 445454 «454545,7878,988978, 3r3e»

    It should run with the jquery code when I click my button?

    any help on this please?

    Thank you.

    How does this update function:

    function replaceUpToN(original, search, replaceWith, maxOccurence){
    
        var NEW_LINE = '\n';
    
        var lines = original.split(NEW_LINE);
    
        $.each(lines, function(index, value){
            var idx = 0;
            lines[index] = value.replace(search, function(match, pos, original){
                idx++;
                return idx <= maxOccurence ? replaceWith : match;
            });
    
        });
    
        return lines.join(NEW_LINE);
    
    }
    
  • create jquery TABS simple in apex

    All,
    I'm creating TABS jquery based in apex, but I realized its not working not as I thought... I really need help on this please?

    that I created in my area, I added code below
    <div id="tabs">
    <ul>
    <li><a href="#">Nunc tincidunt</a></li>
    <li><a href="#">Proin dolor</a></li>
    <li><a href="#">Aenean lacinia</a></li>
    </ul>
    </div>
    
    then at page header i made references,
    
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
    <link rel="stylesheet" href="#WORKSPACES_IMAGES#style.css" />
    that I added the region of the child to the foregoing.

    but not everything works... .your help is sincerely appreciated

    First of all, why you are referencing a new version of jquery which is bundled with APEX? Here is a simple solution for your problem: http://www.warp11.nl/2011/04/tabs-within-apex-using-jquery/

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • How to link lists to the tab at the Apex 4.1

    Hello

    I have a page in a tab, named Admin. When I click on the tab, the page that opens, containing a control shared-> list, which has 4 links vertically, by clicking on each of these openings of links, a different page. My question is, when I select the Admin tab it is highlighted (theme 21), but when I hit any of the lists that opens another page, I always feel like the Admin tab to be stressed because lists looks like a menu.

    I guess it's a matter of link sort the list on one leg?

    Any suggestions

    Apex 4.1

    Thank you
    Sun

    Hello

    Change the Admin tab and enter your list of pages in current Pages for > tab also run for Pages.

    Kind regards

  • Do not mix variables of substitution for the title area and JQuery Tabs

    Hello

    I've implemented Jquery tabs to the Apex 4 using this great piece of Patrick Wolf:

    Re: New themes in APEX 4 does not not with JQuery tabs

    However, there is a problem and I don't know if it's a bug or it is me who is missing something... If I put substitution variables, as in the title of the subregion (e.g. customer and P10_CUSTOMER_NAME.), the substitution variable do not get overridden and the text is displayed as in the tab.

    The variable is properly developed in the region title itself (which appears inside the tab). Simple example:
    +----------------------------+
    | Customer &P_CUSTOMER_NAME. |  <--- TAB
    |                            +------------
    |
    | +----------------------------------
    | | Customer Luis                     <-- SUB-REGION TITLE
    | +----------------------------------
    | |
    | |
    The header entry is defined as:
    <li><a href="##REGION_STATIC_ID#-tab-#SUB_REGION_ID#">#SUB_REGION_TITLE#</a></li>
    Shouldn't the chain of substitution #SUB_REGION_TITLE # be converted to the title of region with the extended substitution variables?

    No work around?

    Thank you
    Luis

    Luis

    However, there is a problem and I don't know if it's a bug or it is me who is missing something... If I put substitution variables, as in the title of the subregion (e.g., client & P10_CUSTOMER_NAME) the substitution variable does not get overridden and the text is displayed as in the tab.

    Confirmed. Looks like a bug. Probably substitute on the title (sub-) region is not performed until the region is rendered, but the subregion headers list is generated before that.

    No work around?

    All I can think so far uses a dynamic/JavaScript Action to change the label of the tab when the page is rendered.

  • jQuery Tabs in APEX 5.0.1

    Hello world

    I used this tutorial:

    Tabs within the APEX (using jQuery) "Warp11.:.» Group knowledge Oracle Apex

    to book jQuery Tabs in my APEX applications. It works in APEX 4.0, but is not in 5.0.1.

    Does anyone know why?

    It is similar to the layout:

    1.JPG

    and this is what the page looks like after running:

    2.JPG

    I appreciate any help in advance.

    Hello Farzad,

    the same thing happened to me as well but fortunaely APEX 5 offers a built-in feature to the tabs, while it was easy to migrate. To create tabs in 5 APEX, create a region Type: region display selector, model: tabs container and that's all you need to do.

    Kind regards

    Pavel

  • How to get the names of the tabs in the void?

    Hi all

    Could someone tell me how to get the names of all the tabs of void?

    I have Parent tab T1. T1 has 3 tabs sup T1_1, T1_2 and T1_3.

    I would like to have T1_1, T1_2 and T1_3 names tab in the list.

    Thanks in advance!

    Dip

    Dip,

    You can get the name of the tab of the apex, apex_application_tabs & apex_application_parent_tabs dictionary views. Thank you.

    Kind regards
    Manish

  • Problem with JQuery tab after you migrate towards the APEX 4.0

    My test application hosted on apex.oracle.com use the JQuery tab function and it works well with APEX 3.2.1.
    And now after the migration to the APEX 4.0, it cannot display the tab more.

    No idea how to solve this problem?

    Thank you very much.

    Glad to hear your problems resolved. Don't forget to vote for any message that has been useful or responded to your message.

  • JQuery Tabs and Apex 4.2

    Hello

    I created a few JQuery tabs by following some instructions of Patrick Wolf

    Re: New themes in APEX 4 does not not with JQuery tabs

    I'm trying to preserve the clicked tab, that is to say, if I go to another page and come back to the page with the tabs,

    I want that it displays data in the tab I clicked on last

    I tried the following

    http://jaris.blogsite.org/Apex/f?p=blog:read:0:article:195800346705831

    but I did not know where to place the JavaScript at the end of the post

    Any help appreciated

    Gus

    Hello Gus,

    so I guess that you already have a jQueryTabs of the region and some hidden item where you can store the selected value of tab. Now we have 'just' get the value selected on the page unload, save it and then put back on the loading of the page.

    Name your region jQueryTabs for example "tabRegion" and your hidden item PX_LAST_SELECTED_TAB. place then this code in Footer region your area tab.

    
    

    So now you should be able to see the changes events tab in the console of your browser.

    Then, you need to preserve the value PX_LAST_SELECTED_TAB. To do this, create a dynamic action:

    -page unload event

    action - executing PL/SQL code

    APEX_UTIL.SET_SESSION_STATE('PX_LAST_SELECTED_TAB',:PX_LAST_SELECTED_TAB);--page items to submit PX_LAST_SELECTED_TAB
    

    then when the page unloads, you have stored in a session state value (do not forget to paste. PX_LAST_SELECTED_TAB on item (s) page to submit).

    And the last step is to read its value on the loading of the page. For example, create another DA:

    event - the page loads

    action - to run the JS code

    with the following code

    var tabToSelect = parseInt($v("PX_LAST_SELECTED_TAB"));
    console.log("Pageload: changing tab index to: " + tabToSelect);
    $("#tabRegion" ).tabs( "select", tabToSelect);
    

    Hope that helps.

    Kind regards

    Pavel

  • Apex 5 - several tabs of the browser

    Apex developers try to take over the behavior of the browser integrated with 5 Apex? With 5 Apex, I love how the manufacturer will have start/run applications to test in a new tab and switch to the new tab (the best possible) when you register/execute changes to a page. However, I noticed that Ctrl-click (on Chrome/Mac OSX) does the way he always did in previous versions.

    When I develop I usually 4-5 tablets of open browser (using Ctrl-click to get the installer and go), in order to optimize my time jump part of the manufacturer to another (object browser, commands SQL components shared, page generator templates, etc.). Apex would conscientiously label tab browser with a reasonable invites so I couldn't I wanted to with one click. With the release of 5 Apex by using Ctrl-click to open multiple tabs is no longer works for me. It still works for Apex 4.2.5 which I use regularly.

    I'm not whining on through right click and select open in a new tab (good, maybe a little). I'm really just curious to know why this has been done with 5 Apex? What is the reasoning, technical or other? Specifically, why Apex developers start interfering with the normal functioning of the browser?

    Earl

    Hi Earl,

    Earl Lewis wrote:

    Apex developers try to take over the behavior of the browser integrated with 5 Apex?

    N °

    Much of the effort went into making the menu items behave like native links (anchor elements) while right click, shift/ctrl click/Enter works as expected to open the link in a new window/tab. This also applies to the treeView and iconList widgets when used for navigation. These types of composite controls need to support some features of browser such as management development so that they are a single tab to the behavior of the keyboard correct stop, but when the menu item (or element node or the icon list tree) are an anchor element is used so that the normal browser functionality still works links. If we don't have the right click would even work. However, because of all the other features of these widgets event management is complex, and it is possible that there are bugs.

    I use a mixture of Firefox and Chrome but especially Firefox; at the same time on Windows. I remember hearing something one of the combinations work not on Chrome but I just tried it on Chrome on Windows and no problems with Ctrl click.

    Can you try Firefox on OSx and also try Shift-click and using the keyboard shift + enter and Ctrl + entry (assuming that those working on OSx as they do in Windows) on Chrome and Firefox and let me know.

    Thank you

    -John

  • Package APEX to dynamically access the tabs in the menu?

    Hello community!

    We must build a dynamic authorization to the navigation of our application, so, each tab will have a plsql as a condition function, which evaluates the user authorization to respective tabs in a sql query, returning true or false.

    Now I would like to build a monitoring report, which lists all tabs and displays authorization (LDAP) for each tab group, as appropriate.

    To achieve this, I was wondering if there is a bunch of apex which are available to display all the information of interest to all of the existing tabs: tab label, pages, condition parameters, hierarchy (parent or child), in order to get an overview of the current configuration and create a user-friendly interface to link new user groups for the authorization menu tabs.

    I searched for a while and not find anything, but I'm sure its possible with buildin functions apex law. So I hope you can help me on my way.

    Thank you very much in advance,

    Best regards

    Tobi

    Version 4.2 of the APEX

    Hey Tobi,

    Have you looked at the sight of the APEX, APEX_APPLICATION_TABS?

    Jeff

  • Elements of the apex in the Jquery dialog box

    Hi people,

    I have new in apex and I have the question. It is posilble to add the article to the apex of the area of dialogue jquery?
    I created a region that boasts the style attribute display: no.
    In this region are 2 point of cascade of selection list, until I raised the jquery dialog box, I put the items in this dialog box (I use jquery html() method), but the flow cascading of second selection list does not?

    Thanks in advance :)

    Shoot to kill: elements of Apex in jquery window/dialog

Maybe you are looking for