Programmatically creating a navigation bar

I am attempting to programmatically create and drive an OAF Navigation Bar bean. I can successfully instantiate the OANavigationBarBean and get it to appear on the page. However, I am unable to programmatically add any links to the navigation bar. I have attempted to do this programmatically in the processRequest method of the Controller of page1, using the following code:
OAPageLayoutBean oapagelayoutbean = (OAPageLayoutBean)oawebbean;
OANavigationBarBean oanavigationbarbean = (OANavigationBarBean)createWebBean(oapagecontext, "NAVIGATION_BAR", null, "TheNavigationBar");
oanavigationbarbean.setValue(1);
oanavigationbarbean.setMinValue(1);
oanavigationbarbean.setMaxValue(5);
OALinkBean oalinkbean1 = (OALinkBean)createWebBean(oapagecontext, “LINK_BEAN”, null, "Step1");
oalinkbean1.setRendered(true);
oalinkbean1.setID("Step1");
oalinkbean1.setLabel("Step1Label");
oalinkbean1.setText("Step 1");
oalinkbean1.setUINodeName("StepOneNodeName");
oalinkbean1.setDestination("/oracle/apps/ak/myapp/server/page2");
oanavigationbarbean.addIndexedChild(oalinkbean1);
oapagelayoutbean.addIndexedChild(oanavigationbarbean);
This code compiles but doesn’t do anything when the next button is clicked.
Has anyone else encountered this problem?

As you can see, you are in for a lot of work with this popup
menus...
read these 2 articles before going any further:
http://www.apptools.com/rants/jsmenu.php
http://www.apptools.com/rants/menus.php
The best way to use a navigation menu across all your pages
is to either use
DW templates or Server Side Includes. (SSI). However, the DW
popup
navigation system doesn't play nice with Templates.
There are better ways to build these menus, mention of this
is in the
articles above. The will be much easier to maintain across
your whole site.
Nadia
Adobe� Community Expert : Dreamweaver
http://www.csstemplates.com.au
- CSS Templates | Free Templates
http://www.perrelink.com.au
- Web Dev
http://www.DreamweaverResources.com
- Dropdown Menu Templates|Tutorials
http://www.adobe.com/devnet/dreamweaver/css.html
> Alright guys, I built a navigation bar in fireworks that
has all the
> pop-up
> menus for my schools website but I don't know if this is
the easiest way
> to do
> it. I need this navigation bar to be on every single
page of the site
> except
> the banner above the buttons will change. I thought the
easiest way to do
> this
> would be putting the fireworks HTML on each page and
then when I get ready
> to
> add links to the navigation bar I can just update that
HTML since its the
> same
> for all pages. But, I tried that and I still have to
update each page
> manually.
> Right now there are no links associated with the pop-up
menus and I need
> to
> start linking them to pages. The down side, I don't know
how to get the
> pop-up
> menus linked! HELP!
>
> Please let me know if there is an easier way to build a
navigation bar in
> Dreamweaver. Thanks!
>

Similar Messages

  • How to create a navigation bar with custom made buttons?

    I'm used to work with a similar program as Muse. In there we can create a single button and link them together into a navigation bar. I have tried all sorts of tutorials but none of them is discussing this possibility.
    To summorize. The idea is to create a button in photoshop and to use this as a theme to build a navigation bar. Possible or not and how? Thanks for assistance. Rgds Rufin

    Hi Brad,
    Thanks for your reply.
    No, not really. I used to work with XARA up till now. And being an Adobe Cloud user I think it a bit silly using two different systems. In XARA I can create a custom button and turn them into a navbar. For your information I include a few links to sites I created with Xara and I would like to know if I can create the same type of navbars with Abobe Muse. I already found out that all the other functions are available and some work a lot better in Muse, but I’m stuck on the navbar issue. I know I can create a button in Adobe PS and use it in Muse. But I didn’t manage to figure out how to create a navbar in Muse on basis of a button created in PS.
    www.restaurant-cedric.be or www.discoamigo.com or www.radioparadijs.be
    Grtz,
    Rufin
    LOGO-RUFIN'S-REISBUREAU-outlook
    Koningslaan 36 – b31
    8300 Knokke – Heist
    Tel: 050621052
    Fax: 050621072
    e-mail:  <mailto:[email protected]> [email protected]
    <http://www.rufins.be/> http://www.rufins.be
    <http://www.travelcoop.be/> travelcoop_logo_2013[1]  <http://ferventreisagent.be/rufins-reisbureau> klein logo
    Van: Brad Lawryk
    Verzonden: zondag 12 oktober 2014 19:40
    Aan: RUFIN DUWEL
    Onderwerp:  How to create a navigation bar with custom made buttons?
    How to create a navigation bar with custom made buttons?
    created by Brad Lawryk <https://forums.adobe.com/people/Brad+Lawryk>  in Help with using Adobe Muse CC - View the full discussion <https://forums.adobe.com/message/6817739#6817739>

  • How to create a navigation bar that doesn't move

    I'll keep it short:
    How do I create a navigation bar like abduzeedo.com? It just stays on the screen.

    You can use a div with the CSS position: fixed; top: 0 set.  This will allow the div to "stick" to the top of the page, regardless of where the document is scrolled.

  • How to create a navigation bar

    I wanted to create a navigation bar exactly like the one seen
    at the top of this website
    http://stage6.divx.com/ whenever
    i seem to insert a table and then insert my navigation buttons i
    cant move it to the top of the page, i also wanted to know how to
    centralise these buttons if you look on the example i posted
    whenever you re-size your inet browser window the buttons go with
    it. any help
    Thanks in advance
    Rph =D

    Do you specifically need to use the onclick event, or do you jts want to run Javascript from the navbar entry? If the latter then you can use the URL method and set the URL to:
    javascript:myfunction()
    If it must be an onclick event then I think you would need to attach it dynamically in Javascript (using jQuery if available) to locate the link somehow (it's not easy to give it a unique ID unfortunately).
    Edited by: Tony Andrews on Oct 26, 2010 10:35 AM

  • How can I create a navigation bar in the template so I can change the down state of a button on a page made from the template in DW3?

    We're creating pages from a template in DW3. The template includes a header, footer and a navigation bar. We've made the navigation bar an editable region so that we can change the down state of the buttons on pages where it is required. However, when we make a new page from the template and try to change the behaviors of the buttons in the navigation bar it will not allow us to make those changes. 

    Have you considered using CSS styled text/list menus instead of image rollovers.  It isn't hard really and it's actually a much better choice for   web accessibility and for search engines to find and follow your links.   Here are some links to several CSS menu systems you can try:
    CSS Express Drop-Down Menus (tutorial)
    http://www.projectseven.com/tutorials/navigation/auto_hide/
    CSS Tab Designer creates 60+ CSS Styled Button and Tab Menus  (download)
    http://www.highdots.com/css-tab-designer/
    List-O-Rama  (DW Extension)
    http://www.dmxzone.com/go?5618
    CSS  Menu Maker (On-Line Menu Generator)
    http://www.cssmenumaker.com/
    Pop-Menu  Magic2 by PVII (DW extension purchase)
    http://www.projectseven.com/products/menusystems/pmm2/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • I want a to create a navigation bar like apple's site can i?

    i have the latest version of iweb and i would like to create a cool navigation bar like apple's site plese help me Thanks?

    The best place to convey your thoughts to Apple is via
    http://www.apple.com/feedback
    In meantime, use an Aggregator or another store.  Apple has not had any problem attracting books during the last 3 years and it seems unlikely their policy on this will change to accomodate you.  But there is always hope...

  • Imported buttons to create a navigation bar

    Please help! I have converted an imported button to a symbol
    and cloned it to create a 7 button navigation bar. Each time I have
    cloned the button/symbol I have changed the text and tried to
    create a link in the properties inspector. However this link is not
    'remembered' and the text on the button requires resizing and
    repositioning. I cannot fathom how to do either of these . The
    prompt to update all button states only appears once and only
    affects that one button, is there another way of updating? Under
    the 'active area' tab all 7 buttons appear but superimposed upon
    another button (like the updated 1) positioned centrally.

    You imported the button from...?
    Change the text in the text box on the Property inspector,
    not in the
    button editor.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    Design Aid Kits:
    http://www.webdevbiz.com/pwf/index.cfm

  • How to create a navigation bar entry with onclick event

    I have requirement of creating navigation bar entry with a an "on click" event. When a user clicking time a location list should open. I didn't understand how to do it on NAVIGATIONBAR_ENTRY.
    Also Navigation Bar Entry IMage is not displaying.
    Regards
    Edited by: satheeshkumars on Oct 25, 2010 7:52 PM

    Do you specifically need to use the onclick event, or do you jts want to run Javascript from the navbar entry? If the latter then you can use the URL method and set the URL to:
    javascript:myfunction()
    If it must be an onclick event then I think you would need to attach it dynamically in Javascript (using jQuery if available) to locate the link somehow (it's not easy to give it a unique ID unfortunately).
    Edited by: Tony Andrews on Oct 26, 2010 10:35 AM

  • Can i use Fireworks created Navigation Bar in iWeb?

    I am new to iweb and want to have a specific layout for my website. I don't want any of the templates, so I used fireworks to create a Navigation bar with buttons that have prelinked to the "standard" html, i.e. home.html, photos.html.
    can i use this with iweb? how? if not, and i just use each button indvidually, can i create a text description of the button (so webcrawlers can see my navigation bar)?
    thanks for any help i can get.

    Two pages for you to preview for your answer:
    Web Gallery:
    http://www.apple.com/dotmac/webgallery.html
    AND
    iPhoto .Mac Web Gallery:
    http://www.apple.com/ilife/iphoto/#webgallery
    As I perused the two sites quickly, I didn't see their connection, but you may see something different!
    Paula

  • Dreamweaver help! creating navigation bar?

    how do i create a navigation bar. my dreamweaver help says a
    nav bar has a up. down and over image but doesn't actually tell me
    where to get this image or how to create it??
    if this is going to be too complex i don't mind just having
    my nav bars as text link but can't seem to spread my 7 links out
    horizontally as i can only have two space bar in between each text?

    You and me both my friend! I just got off the phone with
    "tech support" trying to pay for a single incident ($35) so they
    could walk me through putting a navigation bar on my website. It's
    so frustrting dealing with some of these techs. I don't want to be
    politically incorrect here, but I always wind up with someone I can
    hardly understand ( accent ). This stuff is hard enough to follow
    with a language barrier. Then I called in to tech support, they
    told me I had to pay that I was out of complitmentary assistance,
    so they transferred me to sales, who after speaking to two more
    people I had trouble understanding, I was transferred back to tech.
    support who asked me if I had paid for a plan! Then she says she
    can take the credit card etc., when I got through with that she
    tells me that she can't walk me through putting the nav. bar
    directly on my web site, that I'll have to open a new page and to a
    sample one. ( which means when I finish I'll have to remember all
    the steps and try to duplicate it on my own site. ( you know how
    that goes! ) It's infuriating. I wound up spending an hour and got
    nothing, they couldn't even just charge my card so I'd have credit
    toward one call later. ( I had to go after dealing with this for 45
    minutes)
    Anyway, You have to go to Firefox or maybe photoshop to
    create the background image. I did some in Firefox, but for the
    page background, not the nav. bar. You would open a new page, put
    in the size ( pixels ) you need, then use the rectangle tool to
    outline that which selects it. Then you can go to the bottom of the
    screen and select the color and gradient tool to create some cool
    color effects. The thing I don't know is how to know exactly what
    size your navigation bar is going to be ahead of time so to size it
    right. I understand it has to be exact. This tech told me that they
    can't help with any "design issues", like color, where it goes in
    your website, etc. If they talk you through how to do it on a blank
    page and then you have trouble on your real website, well that's
    another issue and another $35. But I don't even understand if they
    will help you on the real website. NIGHTMARE!!!!

  • How do most people create navigation bars?

    I would like to know how most people create their navigation
    bars. I used FireWorks to do mine. Do most people just create it
    with CSS?

    "Team Liquid Fire" <[email protected]> wrote
    in message
    news:ghflnv$a6h$[email protected]..
    >I would like to know how most people create their
    navigation bars. I used
    >FireWorks to do mine. Do most people just create it with
    CSS?
    Did you visit the Spry Menu Bar Samples page?
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html
    Also, this site has a lot of examples and tutorials:
    http://css.maxdesign.com.au/listamatic/
    Thierry | Adobe Community Expert | Articles and Tutorials ::
    http://www.TJKDesign.com/go/?0
    Spry Widgets |
    http://labs.adobe.com/technologies/spry/samples/
    [click on
    "Widgets"]
    Spry Menu Bar samples |
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html

  • Navigation Bar

    Hi,
    I want to create a navigation bar that consists of two parts, on the left side of my page. The first part includes symbols and is narrow; the second part includes the description of the symbols and is therefore wider.  The first bar is always visible. The second bar should be invisible on page load and fly in when triggered (by rolling the mouse over the first narrow part). When rolling off the second part, it should fly out again. I managed to let the second bar fly in and created a button with the same size as the second, wider bar, which triggers the "fly out" effect when the mouse moves off this button. So far, so good.
    The tricky part is that I want to include 10 smaller buttons within the second part, which change color when rolled over and which link to different pages.
    I manage to trigger the second bar and let the different buttons change their colors etc. but the problem is that the second bar doesn´t fly out again. It seems that the button that triggers the fly out effect is underneath the other buttons and can therefore not be triggered.
    Here is a picture of what I just described. I hope it helps to understand my problem.
    Is there a different and more elegant way to create such a navigation bar?

    Doesn't make sense. Interactive PDF is totally different from an App.
    Apps would let you do most of what you want, but the amount of work is daunting. (Bob Levine knows this quite well.) And I don't think things can move from left to right.
    Interactive PDF is a bit less daunting, but I know things won't move in from left to right.
    Salah's example is the easiest to create with an interactive PDF or App

  • How do I copy a Navigation Bar?

    I've created a Navigation Bar, and I want to copy&paste
    into other documents, or into a cell in a table.
    But it stops working after the simplest cut&paste I can
    devise.
    What don't I understand here? Sure would LOVE some
    help.

    I know what you mean, I haven't found a specific fix, I tend
    to go the other way and build a template including the Nav bar and
    paste other stuff in. If you find a better fix I would love to find
    out.
    Good luck

  • Creating a Nav Bar in Cs5

    Today I wanted to make a navigation bar for my website using the dreamweaver cs5 trial. I googled  "how to create a navigation bar in dreamweaver" in dreamweaver. I got a large amount of results all of which were confusing.I already have a header made in photoshop with a toolbar in it, however I am unsure of what to do next.
    Can anyone give me basic step by step instructions on how to make a toolbar out of part of a photoshop image or should I try something completely different way to make a toolbar?

    Have a look here http://tv.adobe.com/watch/taming-the-web-with-greg-rewis/from-comp-to-finished-page/
    I hope this helps.
    Ben

  • Navigation Bar Profile - Copying business role SalesPro

    Dear all,
    i am on CRM 7.0 and i have to create a business role copying the standard one SalesPro. Easy.
    Therefore, i want to create a navigation bar profile ZSales pro copying the one already used SLS-PRO for the standard one. But when i make the copy, the system requires an entry in the field Action Object for the entry Object Type: BP_ACCOUNT_CHM, Object Action: "empty in standard", target id: MD_BP_OV and highligth: MD_BP_SR where it is blank in standard !!!
    The copy then is not fully done and i cannot create an entry with empty field, how can i manage this, please ?
    Thanks for your help,
    Jay

    Hi,
    Refer to this thread Error inNavigation bar creation.
    Similarly you can skip those entries for the time being and later maintain it again if needed for dynamic navigation.
    Hope this helps.
    Cheers,
    Sumit Mitta

Maybe you are looking for

  • Fusion drive

    Dear sir , I have imac with retina display ..and with i5 8 gb ram and 1 tb hdd . When I was buy that time in india fusion drive is not available. Now I want to upgrade my mac and I want to add add ssd  hard drive in to my mac so my mac work fast .. K

  • Rich Domain Model and Local JNDI Lookups

    Hi, I'm sure this is a problem a lot of other people have come across but there seems to be very little coherent discussion on the issue, so I'd very much appreciate any views people might have on the matter. The problem is whether or not you comprom

  • Downloaded Xcode 5.0.2 and Macbook is running hot

    I just downloaded Xcode 5, and then the update to XCode 5.0.2, and my processor is running over 100%. As a result, my computer is running hot only while XCode is running. Can anyone give a solution why, or how to prevent this issue? Thank you much fo

  • Can't close Word document from dock

    I've never tried this before until now. I minimized several Word documents which places each one of them in the dock. When I select each document in the dock, "Close" is an option that appears, but when I select "Close", nothing happens. To close the

  • HT204053 unable to connect ot server on mini ipad

    "unable to connect to server "  to accept terms and conditions.-icloud A. tired the shut down and open multiple times B. downloaded "find my friends" app C, Downloaded icloud onto my windows P.C. worked for P C but never ask to accept Terms and Agree