Change of Color on Tabbed Navigation List (Apex 4.1)

Dear Friends,
I am using apex 4.1
I have a list on page 0 which is "Tabbed Navigation List" and there are three pages running on it.
I want to change the color of the button when i click on the specific button.
Can any1 help me in this regards. I will be obliged.
Regards,
Kamran

Hi,
>
I have a list on page 0 which is "Tabbed Navigation List" and there are three pages running on it.
I want to change the color of the button when i click on the specific button.
>
Not clear enough.
Different Themes render Tabbed navigation lists in different way. Take a look at the Tabbed Navigation List template on Page 0. You will need to customize this template to achieve what you want.
Regards,

Similar Messages

  • Color Tabbed Navigation List

    Hi all,
    I am using tabbed navigation list in my application. When a tab is selected it should be indicated by some color. How should i do this.
    In shared componenet list, i have the target as f?p=&APP_ID.:20:&SESSION.::&DEBUG.::P20_ITEM1:search interactive:
    Thanks.

    Hi,
    When posting code on the forum, put {noformat}{noformat} (with the curly brackets and the word code in lowercase) above and below your code like this...
    {noformat}{noformat}
    SELECT *
    FROM emp
    {noformat}{noformat}
    It will then appear like this, preserving formatting...SELECT *
    FROM emp
    I can't see the HTML that you've posted unless you do this.
    Cheers
    Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Tabbed Navigation List

    Hi ,
    I am using Tabbed Navigation List in my application. The color of Labels on the tabs are misleading as it appears to be greyed out but is not. And also while we click on any of these tabs there is no indication of which tab is current. Is there a way I can change the color of the label on these tabs at runtime or design time. And Secondly is there a way I can dynamically change the label color to some green or red or even change the background of the tab to indicate to the user that this tab is current.
    Any help in these regard is greatly appreciated.
    Thanks
    sukarna

    Sukarna,
    The short answer is yes - all of this is possible. However, the exact implementation will very depending on a number of factors, most notably the theme/template your using. Can you put an example on apex.oracle.com? We'll need the workspace/username/password. You can create a new user account for this purpose.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    You can reward this reply by marking it as either Helpful or Correct ;-)

  • Substitution syntax in tabbed navigation list. Smart or Lucky?

    I've got a tabbed navigation list that I use on two separate pages.
    The list entry points back to the current page but sets a page item value based on the list item value.
    So this tabbed list might have items labeled E-mail, Phone, Address. When you click one of the list tab items it submits to the current page, sets a hidden field to EMAIL,PHONE, or ADDRESS. That hidden field controls which email,phone, or address region is displayed.
    OK easy enough. Except that I use the same list on multiple pages. Rather than create a list for each page, I made it more generic...
    So I set the item target as follows:
    Target type: Page in this application
    Page: &APP_PAGE_ID.
    Set these items: P&APP_PAGE_ID._ALIAS_REGION
    With these values: ADDRESS
    Notice that I've got substitution type syntax for the target page and the NAME of the item whose value I want to set. For example if the list is rendered on page 2 the target page becomes 2 and the item name becomes P2_ALIAS_REGION. On page 7, they are 7 and P7_ALIAS_REGION respectively.
    I also use this same syntax in the "Current List Entry" with a query like:
    select 1 from dual where :P&APP_PAGE_ID._ALIAS_REGION = 'ACTIVE'
    Now, I thought I was being clever in doing this, since it lets me use the same list on several similar pages. However the Apex Essentials Advisor is complaining about my syntax, and as awesome as that tool is, it got me thinking that I might be too clever for my own good.
    Is it valid to use this substitution syntax in this context? I mean it works, but is it supposed to work this way? If this is by happy coincidence then Apex developers please don't change how this works. If this is by design, then you guys/girls are awesome!

    Is it valid to use this substitution syntax in this context?Yes.
    I mean it works, but is it supposed to work this way?Yes.
    If this is by happy coincidence then Apex developers please don't change how this works.It is very unlikely that we would change any of the core substitution logic in ways that adversely affect behavior like this.
    If this is by design, then you guys/girls are awesome!Aw, shucks.
    Scott

  • #TAB_LINK# value not set for tabbed navigation list

    I'm a big supporter of searching the threads for an answer before posting. My apologies if I've overlooked this in the threads.
    Like many others, I'm leveraging lists to mimic third level tab functionality. I'm trying to use the tabbed navigation list template. My targets for the list entries are pages within the application. When clicking the links however, #TAB_LINK# is not being interpreted within the link URL. #TAB_LINK# is simply appended to the end of the URL instead of being replaced with the actual link value, for example I would expect to see a typical htmldb page link with the target page value.
    As a result, no navigation occurs to the target page. If I change the list template to horitzontal link list, the links function as expected, however I prefer the look of the tabbed navigation template.
    Any suggestions?
    David

    I took a hint from my own post and checked the template that was working for me and noticed that the horizontal list template uses #LINK# instead of #TAB_LINK#.
    I altered the tabbed navigation list template, replacing #TAB_LINK# with #LINK#, and now the tab links function as expected. I'm not sure if this fix will bite me later, or if this is a known issue. If there is a "proper" solution out there, I would still like to hear it. For now I'll assume my fix is a hack.
    Thanks,
    David

  • Tabbed Navigation List Session State

    I converted regular tabs to a tabbed navigation list because the user wanted the tabs on the left side, on a region, not on the top of a page. Now when I navigate between pages using the tabbed navigation list the session state is not saved. For example: the user changes something in a field on page 1 without submitting the change, navigates to page 2, then back to page 1; the change they made on page 1 is gone. How can I prevent this from happening?
    I've checked all of the branches and navigation list targets to make sure I'm not clearing the session state.
    Thanks, Elizabeth

    First, I added Personal_Page under Action/Request.No, that sets the request value in the branch URL.
    so I added Personal_Page in Expression1 under Conditions and set the Condition Type to Request=Expression1That will work. Maybe you have a branch that fires before it so it never evaluated this branch. Anyway, my suggestion was to use an application process, not branches. The firing point of the process should be after-submit, before computations and validations. The process would contain a block like:
    declare l_page varchar2(30);
    begin
      case
        when :request = 'Personal_Page' then
          l_page := '3';
        when :request = 'some other value' then
          l_page := '4';
        -- etc.
      end case;
      apex_application.g_unrecoverable_error := true;
      owa_util.redirect_url('f?p=' || :APP_ID || ':' || l_page || ':' || :APP_SESSION);
    end;Scott

  • Working with "tabbed navigation list" widths

    I have created a list of type "tabbed navigation list" and added it to a page. I modified the "template" for the page adding a bottom border to the table for the tabbed navigation list.
    http://htmldb.oracle.com/pls/otn/f?p=36420:1:
    How would I control the width of this tab navigation list?
    I would like to make the width extend to 100% of the page, however, I'm unable to control the width either by setting the region width or the template width for the tabbed navigation list.
    Thank you!

    Hello,
    Your Region Template is a table and collapsing down. Remove the region template or change it so the table has width="100%" or change it to Report Region 100% Template if your using one of the builtin themes.
    Carl
    Message was edited by:
    Carl Backstrom

  • Tab Navigation List - Current Tab

    I'm using a tab navigation list to hide/show regions on a page. When the page displays, all the tabs are showing the same way and there is no way to know what tab is current. Is there a way to change the display of tab if it is current?

    Hi,
    Edit the List you are using in the Tabbed Navigation.
    Under "Current List Entry" select "Colon Delimited Page list" and enter the page(s) in "List Entry Current for Condition" for each of the list entries.
    Regards,

  • Highlight a list (TABBED NAVIGATION LIST TEMPLATE)

    Hi everyone,
    I have created a list with template (TABBED NAVIGATION LIST 2) in my application.But its not highlighting the tab(as the list template is tabbed navigation) what i seleted.How can i highlight that selected list.Could anyone please help me to solve this.
    Theme: Business Look
    Thanks
    phani

    Could anyone help me how to change the template of that list (TABBED NAVIGATION LIST) to make it highlight the selected list.
    Thanks
    phani

  • Changing hyperlink colors for the navigation bar

    hello all i am trying to figure out how to change the color of the links that are the top of my page in the navigation bar. i know how to do it with the ones in my text- but i cannot figure out how to do so for the ones at the top of each page in the navigation bar.
    any help would be much appreciated!

    Welcome to the Apple Discussions. Here's a link to a post by Cyclosaurus, the resident java script expert, about changing the font, etc. in the navbar with java script and a HTML snippet.. Don't know if includes color also.
    http://discussions.apple.com/thread.jspa?messageID=8600361#8600361
    OT

  • Change background color of tabs?

    I use Safari on a 13" Macbook Air, after recently abandoning Chrome.  I have trouble reading the tiny print on the dark gray tabs.  Can I change the background color, or enlarge the print?

    Hi June ...
    Unfortunately, the Safari background color on tabs cannot be modified nor can the font size be increased.
    Try using a different resolution on your Mac. Open System Prerferences > Displays then select Scaled.
    If that doesn't work for you, you may have better luck using the Firefox browser > Download Firefox
    How to change the fontsize in the bars and tabs? | Firefox Support Forum | Mozilla Support
    How to set the zoom out or in for all pages permanently? | Firefox Support Forum | Mozilla Support
    Themes :: Add-ons for Firefox

  • How do I change font colors in the navigation bar

    I'm designing a new website for my son's high school lacrosse team. It looks great, and I hope to upload it in the next week. The one thing that I haven't been able to do is change the font colors and font type in the page navigation links a the top of the pages. Can anyone help me with this?

    I outlined methods to change iweb navbar in this thread:
    http://discussions.apple.com/thread.jspa?messageID=11004066&#11004066
    and cited inefficient of building text base/box navbar:
    http://discussions.apple.com/thread.jspa?messageID=8136472&#8136472

  • WAD: Change Background color of TAB pages

    Hi Gurus,
    I have a requirement to change the background color of the TAB pages in a  TAB strip container.
    By default it displays in "white" color. How can I change this.
    Thanks,
    Sandeep

    Hi Sandeep,
    Not sure if there's a way to change each tab page background color using css etc. But maybe as an alternative if you do not wish to see the tab page background as white and are ok with SAP color themes, you may use a Group webitem (i.e. embed the webitems already on each tab page in a separate Group webitem - if you have more than 1 webitem you would first need to use a Container webitem). For a Group webitem you can choose the background color from Internal Display -> Design property.
    --Priya

  • How do you change the color of the navigation bar text  in iWeb?

    I have created buttons to set in the nav bar but the type color needs to be white to show up against the button background.
    How can I change the nav bar text colors?
    Thanks
    G

    If it's the iWeb generated navbar then see if this tutorial helps: #24 - How to Change the Basic, Rollover and Visited Color of an iWeb Navbar
    OT

  • Session State is set to null when tab (from List) is clicked

    Hi Gurus, et al,
    Database: 10g Rel 2
    APEX: 4.1.2
    My application uses a tabbed navigation list to tab through different sections of the form. Each tab issues a doSubmit('tabname');. My application also uses Page 0 for regions that are common to several forms. When I tab through the form (called requisition), the session state for the page items is set to null while the page 0 remains intact. It seems like the doSubmit sets the page items to null. How can I prevent this from happening?
    Also, it still happens on APEX 4.2.1 because I put the application on APEX.ORACLE.COM:
    Workspace: RGWORK
    Application: CSRSR (Application 60220)
    Page: 8
    Username: tester
    Password: test123
    Please follow these steps for this issue to occur
    1. Run application 60220
    2. Select the only choice on the menu (Creative Services Design Requisition (PA 0879))
    3. List of Outstanding Requisitions is displayed
    4. Click the edit icon next to the requisition Project Description is 'zazaza'
    5. Change Date Needed to 3/31/2013
    6. Click on the Project Type tab
    7. All items are null for that tab (project type in the database = 'frame:dec')
    Robert
    http://apexjscss.blogspot.com

    Denes,
    While I appreciate your professional opinion, the issue still remains. I may not have the described the issue clearly. It seems that while the row is initially fetched (source type is only when null), project type and purpose items are not displayed initially with the infomation from the table when the appropriate tab is clicked. For example, while the row contains 'frame:dec' for project type, those checkboxes are checked on on the screen.
    The form is "complex" for the following reasons:
    1. Uses a wizard for new requisitions
    2. Uses tabs for updates
    3. Uses a Modal page to display outstanding requisitions for the user before the form is displayed
    4. Uses common regions (on page 0) with other pages (3 pages uses project information, delivery, requesting department, and chargecode regions.
    5. Authorized approvers popup list are populated
    6. Manual tabular form is used for framing information including collections
    I tried to uses application processes, application computations, package procedures and functions whenever possible.
    SOMEONE, PLEASE HELP!
    Robert
    http://apexjscss.blogspot.com

Maybe you are looking for

  • Regarding the workflow notification page customization

    Hello Everyone... I am new to Oracle OAF... Customize the Oracle Workflow Notifications page (for Open Notifications) by using OA Framework Customization (to display more details on the Notification) what is solution for this component? could someone

  • Jar, jnlp, and documentation

    i have three questions. 1. Can image files go into a jar file? 2. What goes into a jnlp file? 3. Is there documentation on swing that can be downloaded and tell you about all of the different objects you can use? I downloaded one but there were know

  • EP 6.0 Innerpage, Navigation Panel, Related Links issues

    I have been trying to reposition the navigation panel and related links panel on my pages but haven't had any luck. What I am trying to do is I want to be able to create a template where I can move the relate links panel to any location I want. I als

  • Cant create more than 16 services instances in ME3600

    I have an issue in creating services instances with bridge-domain in ME3600x the license level is AdvancedMetroIPAccess. i have currently 16 services instances, and if i create 1 more the number 16th puts himself in shutdown.  show version results: C

  • Any Way to Get LR 1.4.1 Complete Version

    I purchase LR 1.0 and right now I can't import any new images into the program after upgrading to 1.4.1. The problem arose with version 1.3. If I want to remove LR and reinstall 1.0, will I be able to upgrade to 1.4.1 without any issues? I have backe