N level Menu creations

Hi i want to write a query so that it gives me n-level menu tree. the structure of the menu table is as follows :
MENU_ID     INTEGER     number,               
MENU_NAME     VARCHAR2(255)
MENU_TITLE     VARCHAR2(300)
MENU_TITLE_LANG1     VARCHAR2(300)
MENU_TITLE_LANG2     VARCHAR2(300)
MENU_DESCRIPTION VARCHAR2(500)               
MENU_DESCRIPTION_LANG1     VARCHAR2(500)     
MENU_DESCRIPTION_LANG2     VARCHAR2(500)     
MENU_PARENT_ID     NUMBER(10)
MENU_SCREEN_URI     VARCHAR2(1000)
MENU_SCREEN_URI_ADDTNL_PARAM     VARCHAR2(1000)          
SCREEN_TARGET_FRAME     VARCHAR2(50)     
MENU_ICON_URL     VARCHAR2(1000)
STATUS     CLASSIC_SEC_FLAG_TYPE
MAKER_AUTHOR_DETAILS     CLASSIC_SEC_MKR_CHKR_DTLS_TYPE               
the resulting xml has to be in the form :
"<menubar>"+
"<menu text=\"File\" >"+
"<submenu id=\"KJHS\" width=\"100px\">"+
"<item text=\"New\">"+
"<submenu id=\"PZGL\" width=\"110px\">"+
"<item text=\"JPEG\" HREF=\"/Test1/a.faces\" TARGET=\"content\" ></item>"+
"<item text=\"GIF\" HREF=\"/Test1/a.faces\" TARGET=\"content\" ></item>"+
"<item text=\"BMP\" HREF=\"about:blank\">"+
               "<submenu id=\"LPG\" width=\"110px\">"+
                    "<item text=\"JPEG\" HREF=\"/Test1/a.faces\" TARGET=\"content\" />"+
                         "<item text=\"GIF\" HREF=\"http://ittyurl.net/PopularRecent.aspx\" TARGET=\"content\" />"+
               "</submenu>"+
          "</item>"+
"</submenu>"+
"</item>"+
"</submenu>"+
"</menu>"+
"</menubar>"+
if anyone has any idea then do let me know please.......
Regards,
Vikas Kumar

This should help you.
Processing ...
CREATE TABLE TAB_A AS (
     SELECT 'ROOT' AS NAME,1 AS ID,NULL AS PARENT FROM DUAL
     UNION ALL
     SELECT 'SUB-1' AS NAME,2 AS ID,1 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'SUB-1-1' AS NAME,3 AS ID,2 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'IT-1-1' AS NAME,4 AS ID,2 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'IT-1-2' AS NAME,5 AS ID,2 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'IT-1' AS NAME,6 AS ID,1 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'IT-1-3' AS NAME,7 AS ID,2 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'SUB-2' AS NAME,8 AS ID,1 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'IT-2-1' AS NAME,9 AS ID,8 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'IT-1-1-1' AS NAME,10 AS ID,3 AS PARENT FROM DUAL
     UNION ALL
     SELECT 'IT-1-1-2' AS NAME,11 AS ID,3 AS PARENT FROM DUAL
Processing ...
CREATE GLOBAL TEMPORARY TABLE TEMP_TAB AS (
     SELECT LEVEL AS LV,ROWNUM AS RN,A.*
     FROM TAB_A A
     WHERE (1=0)
     START WITH PARENT IS NULL
     CONNECT BY PRIOR ID = PARENT
Processing ...
INSERT INTO TEMP_TAB
     SELECT LEVEL AS LV,ROWNUM AS RN,A.*
     FROM TAB_A A
     START WITH PARENT IS NULL
     CONNECT BY PRIOR ID = PARENT
11 row(s) inserted
Processing ...
SELECT --LV,
     --RN,
     --1+(NVL(LAG(LV) OVER ( ORDER BY RN ASC),0)-LV+1) step,
     --lead(LV) OVER ( ORDER BY RN ASC NULLS LAST) next_lev,
     decode (
          lv-1,
          nvl(
               LAG(LV) OVER ( ORDER BY RN ASC)
               ,0
          '<SUBMENU>',''
     )||'<ITEM>'||NAME||'</ITEM>'||replace(
          RPAD(
               chr(10),
               1+(lv-NVL(
                    lead(LV) OVER ( ORDER BY RN ASC),
                    0
               ))*LENGTH('</SUBMENU>'),
               '</SUBMENU>'
     chr(10),
     ) AS XML_TEXT
FROM TEMP_TAB A
ORDER BY RN ASC
Query finished, retrieving results...
                                    XML_TEXT                                    
<SUBMENU><ITEM>ROOT</ITEM>                                                      
<SUBMENU><ITEM>SUB-1</ITEM>                                                     
<SUBMENU><ITEM>SUB-1-1</ITEM>                                                   
<SUBMENU><ITEM>IT-1-1-1</ITEM>                                                  
<ITEM>IT-1-1-2</ITEM></SUBMENU>                                                 
<ITEM>IT-1-1</ITEM>                                                             
<ITEM>IT-1-2</ITEM>                                                             
<ITEM>IT-1-3</ITEM></SUBMENU>                                                   
<ITEM>IT-1</ITEM>                                                               
<ITEM>SUB-2</ITEM>                                                              
<SUBMENU><ITEM>IT-2-1</ITEM></SUBMENU></SUBMENU></SUBMENU>                      
11 row(s) retrievedBye Alessandro

Similar Messages

  • Please help with dynamic menu creation needs to have 5 levels

    Hi,
    I have run into a Coldfusion problem that I was hoping you
    could help me with.
    What I am trying to solve is the dynamic creation of at least
    5 levels of categories for a menu built with Coldfusion, and if
    possible an infinite amount of levels.
    Each of these also if it is at the end of the tree will have
    to have products under it aswell the category will only show up if
    there is products under it.
    To acomplish this I have created a database table called
    "Categories" which contains the fields shown in the linked
    spreadsheet. I am using the "cat_parent" to hold the value of the
    parent of the current record. When the parent is a top level menu
    item I have assigned this a cat_parent id of "0". Using this method
    I am able to do a self join on the table (where "cat_parent" =
    "cat_id") to extract the relationship between parent and child
    records throughout the table. This works fine. And I have created
    output for 5 levels of display.
    There are 3 issues left that I could not work out.
    - Firstly my coding method loops through each node of the
    tree with one query to create each category of the menu. This means
    one query per menu category and as the client could have up to 200
    categories in the menu and I am concerned that the solution that I
    have come up with is too processor intensive.
    - Secondly the way that I have created the category menu is
    hard coding in the levels needed so there is only 5 not an infinite
    amount which would be preferable but is not essential.
    - Finally I could not work out how to not create "parents" in
    the tree if there is no products for the end child category.
    Meaning that if there is for example a category > subcategory
    > subsubcategory but there is no products associated with the
    end category - "subsubsubcategory" then it's parent and so on will
    not display until one of them has products.
    Here
    is a link to a zip file that includes: the cfc that contains
    the query function (categories.cfc), the page that is creating the
    categories menu (lefnav.cfm), a simple cfc that contains a products
    query just for testing (products.cfc) along with a spreadsheet of
    the Categories table's fields.
    I would greatly appreciate any suggestions.
    Thanks for any time and help you can give me on this

    This should at least get you started in the right direction.
    http://www.sitepoint.com/article/dynamic-menu-coldfusion
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technologies, Inc.
    =============================
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.macromedia.com/go/team
    "shunnyboy" <[email protected]> wrote in
    message
    news:e2h9hs$kp5$[email protected]..
    > Hi,
    >
    > I have run into a Coldfusion problem that I was hoping
    you could help me
    > with.
    >
    > What I am trying to solve is the dynamic creation of at
    least 5 levels of
    > categories for a menu built with Coldfusion, and if
    possible an infinite
    > amount
    > of levels.

  • A top level menu item should display its active state if any of its submenu items are active

    Example case: I'm designing a Muse site which is basically a portfolio of our work. We design books, doing page layout and covers. We have numerous book categories and sub categories which I put in a horizontal menu. When a given top level category menu item doesn't have a submenu, it is a hyperlink and it displays active state when the browser displays its linked page. But when a given page is displayed from a submenu link, its top level menu item does NOT display active state. I think it should.
    For example, we have a "Nostalgia" category which has "Film" and "TV" subcategories. Because the menu item, "Nostalgia" has a submenu containing "Film" and "TV", the label "Nostalgia" is not a hyperlink. The submenu attached to it has the two hyperlinked items "Film" and "TV". When the browser is displaying either linked page, the submenu is hidden. So it would be nice if the top level item, "Nostalgia" would display in an active state.

    Hello Daniel,
    As of now this feature is not there in Adobe Muse.
    I would suggest you to please log this as a feature request in our "Ideas for features in Adobe Muse" section. (http://forums.adobe.com/community/muse/ideas)
    Hope this helps.
    Regards,
    Sachin

  • Change Background in Menu Creation  Encore CS4 and Photoshop

    I am creating a menu using Encore and Photoshop. I Used the Encore Libray to create a blank background and also created a series of buttons adusting them in Photoshop CS4. However, when I try to change the background with a new jpg or psd file I open the picture in Photoshop but not as the new background layer  I am trying to achieve. Can anyone tell me where I am going wrong? 

    Dear Bill,
    Thank you for your prompt reply. However, I don't think I am explaining my problem correctly so if you have the patience I am sending you this little "Jing" movie which will show you my problem
    http://www.screencast.com/t/YWI5MDcw
    Regards
    Stanley
    Stanley Dalnekoff, President
    HeritageVideo
    70 Marvel Road
    New Haven, CT 06515
    Tel:203-397-0775-O
         203-464-4975-C
    www.heritagevideo.net
    Date: Fri, 30 Jul 2010 12:39:20 -0600
    From: [email protected]
    To: [email protected]
    Subject: Change Background in Menu Creation  Encore CS4 and Photoshop
    There should be no problem when adding the image of your choice, with Edit in Photoshop.
    When you choose Edit in Photoshop, several things happen:
    1.) a TMP PSD for that Menu is created.
    2.) links are created between En and PS
    3.) PS is launched, and that TMP PSD is then Opened in PS.
    When one has edited that TMP PSD in PS, they must do a Save to allow those links back to En*.
    If you are doing a Save_As, or Save_As_a_Copy, those links will NOT be followed, and the Menu will NOT update in En.
    Good luck,
    Hunt
    I have encountered some instances, where a single Save does not follow those links. With experimentation, I have found that 3 Saves (Ctrl+S) will force those links to be followed, and the Menu updated in En. Not sure why this happens sometimes, but 3 seems to be the "magic number," at least for me.
    >

  • Images are not reflecting in Multi Level Menu

    Hi,
    i am facing some problem in the Multi Level Menu.
    i have created a book in my portal application.
    For the "Main Page Book" i am setting "Multi Level Menu"
    For the Book with in the menu, i am setting "No Navigation"(to avoid the sub pages displaying when clicking the book)
    for example the Book name is "Home".
    i want to replace the Home with some images.
    using "selected image" i have placed some .gif
    when i have checked at run time that image is not reflected.
    when i keep the menu as "Single level menu" images are coming. (but drop down is not coming)
    the problem is when i put the menu as "multi level menu" the images are not reflected.
    pls help me to solve this issue.
    regards.

    Hi,
    we've got the same issue in the project I'm working on. We told thos to BEA and they said that this is not coded. So 2 BEA's consultants are working on it for us. May be it will be included in the next version of WLP...
    Tom

  • Third level Menu CSS?

    HI folks,
    I'm working on a third level menu and I need a CSS fix for this, and I'm not sure I understand why it is dropping down  instead of flying out...
    To see the menu in action, go here : http://bendannie2.businesscatalyst.com/Sale  and hover over  the On Sales menu.  The third level menu is dropping down and when I try to move it right with a left margin, the container box remains in place and only the text  li     moves right...
    And it really shouldn't display until I'm hovering over the Cartier Jewelry link...
    TIA,
    Jeff
    The code so far is:
    nav ul ul {
        background: #FFFFFF/*url(images/nav-current.png) repeat-x scroll center top*/;
        opacity:0.8;
    filter:alpha(opacity=90); /* For IE8 and earlier */
        -moz-box-shadow: 0px 3px 5px 0px rgba(68,68,68,0.7);
        -webkit-box-shadow: 0px 3px 5px 0px rgba(68,68,68,0.7);
        box-shadow: 0px 3px 5px 0px rgba(68,68,68,0.7);
        left: -999em;
        list-style: none outside none;
        margin: 0;
        padding: 4px 0 0;
        position: absolute;
        top: 89px;
        width: 12em;
    nav li:hover ul,
    nav li.sfhover ul{
        left: auto;
    nav ul ul ul li{
        background: none;
        border-bottom: 1px solid #6699FF;
        list-style: none;
        margin: 0 0 0  0px;
        padding: 0;
    nav ul ul li{
        background: none;
        border-bottom: 1px solid #6699FF;
        list-style: none;
        margin: 0 0 0 -20px;
        padding: 0;
        nav ul ul li a:link,
        nav ul ul li a:visited{
        color: #3399FF;
        display: block;
        font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Helvetica, Arial, sans-serif, "Bitstream Vera Sans";
        font-size: 12px;
        padding: 8px 5px;
        text-decoration: none;
        nav ul ul li a:active,
        nav ul ul li a:hover{
        background: #e4e4e4;
        color: #3366FF;
        padding: 8px 5px;

    HI folks,
    I'm working on a third level menu and I need a CSS fix for this, and I'm not sure I understand why it is dropping down  instead of flying out...
    To see the menu in action, go here : http://bendannie2.businesscatalyst.com/Sale  and hover over  the On Sales menu.  The third level menu is dropping down and when I try to move it right with a left margin, the container box remains in place and only the text  li     moves right...
    And it really shouldn't display until I'm hovering over the Cartier Jewelry link...
    TIA,
    Jeff
    The code so far is:
    nav ul ul {
        background: #FFFFFF/*url(images/nav-current.png) repeat-x scroll center top*/;
        opacity:0.8;
    filter:alpha(opacity=90); /* For IE8 and earlier */
        -moz-box-shadow: 0px 3px 5px 0px rgba(68,68,68,0.7);
        -webkit-box-shadow: 0px 3px 5px 0px rgba(68,68,68,0.7);
        box-shadow: 0px 3px 5px 0px rgba(68,68,68,0.7);
        left: -999em;
        list-style: none outside none;
        margin: 0;
        padding: 4px 0 0;
        position: absolute;
        top: 89px;
        width: 12em;
    nav li:hover ul,
    nav li.sfhover ul{
        left: auto;
    nav ul ul ul li{
        background: none;
        border-bottom: 1px solid #6699FF;
        list-style: none;
        margin: 0 0 0  0px;
        padding: 0;
    nav ul ul li{
        background: none;
        border-bottom: 1px solid #6699FF;
        list-style: none;
        margin: 0 0 0 -20px;
        padding: 0;
        nav ul ul li a:link,
        nav ul ul li a:visited{
        color: #3399FF;
        display: block;
        font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Helvetica, Arial, sans-serif, "Bitstream Vera Sans";
        font-size: 12px;
        padding: 8px 5px;
        text-decoration: none;
        nav ul ul li a:active,
        nav ul ul li a:hover{
        background: #e4e4e4;
        color: #3366FF;
        padding: 8px 5px;

  • Menu creation failed

    Hi All,
    I am facing a problem when I am trying run my addon in SAP 8.81 PL05 and Pl 06 but it is running ok upto PL04.It is giving erron menu creation failed randomly.I have searched the forums regarding this problem and in forums it is written that it is a bug of SAP.But i have to communicate with the client regarding this matter so it will be better if somebody give me a link or document where from SAP side there is  a clarification on this.I need this urgent so please help me to find a way.
    Thanks and Regards
    Utpal Maity

    Hello
    You can check sap note:1593179. The following line is from into.txt of 8.81 SP 00 PL07 patch.
    2011/07/14     UI_Menu Already Exists error when re-logging into company and running add-on again.
    Regards
    János.

  • Need help on Multi level menu implementation

    Hi All,
    Need help on Multi level menu implementation
    Thanks,
    Anu

    Hi Anu,
    Please go through this link Implement Multilevelmenu navigation
    Thanks,

  • 4 level menu crush

    Hi,
    I am trying unsuccessfully to create 4th level menu using SRDemo’s MenuItem and other classes. For 3 level menus everything fine. I use MenuList in menu3 facet:
    <f:facet name="menu3">
    <!-- Sub Tabs shown in the header bar -->
    <af:menuList var="menuSubSubTab" startDepth="2"
    value="#{menuModel.model}">
    <f:facet name="nodeStamp">
    <af:commandMenuItem text="#{menuSubSubTab.label}"
    action="#{menuSubSubTab.getOutcome}">
    </af:commandMenuItem>
    </f:facet>
    </af:menuList>
    </f:facet>
    How to modify this code if I want that some of items have sub items. I tried to insert something like this:
    <af:menuList var="menuSubSubSubTab" startDepth="3"
    value="#{menuSubSubTab.children }">
    no any good result. Does anybody have a code sample?
    Thanks.

    Hi Rahul,
    In the release prerequisites dont tick anything
    In the release status,do the following
    A1   A2    A3    A4     Status
                                    Blocked
    X                              Blocked
           X                       Blocked
                    X              Blocked
                           X       Blocked
    X    X                        Blocked
                   X     X        Blocked
    X             X               Released
    X                   X         Released
         X       X                Released
         X             X          Released
    Configure like this as per your requirement and try it out.
    Regards,
    RitiG

  • Properties - automatic menu creation

    Hi there,
    I'm currently working on a project that is frequently being changed and therefore I require a method to facilitate the creation of its menu.
    I am hoping to use a properties file to describe the contents of the menu and also which Actions each menu item will use.
    Does anyone out there have any code that exhibits this sort of behaviour, since I am having a bit of trouble in creating a robust system to do this; currently I have:
    a Properties file such as:
    # start of properties file
    menus = file edit # all of the menus
    menuitems = open open_recent save new global_options # the menu items
    file.children = open open_recent save new # the menu items of the file menu
    edit.children = global_options # the menu items of the edit menu
    open.text = Open # the text to appear on the menu item
    open.action = OpenAction # there is a class called OpenAction which provides the behaviour of this menu item
    open.gif = open.gif # the icon gif file for this menu item
    # .. now do the same for each other menu item
    # end of properties file
    Now in the source code I iterate through this file and store all of the menus and menu items in a hash table. Using the menu.children bit above I add the relationships of menu items (or other menus) to the menus. Then I add the text, action, and gif to the menu items.
    However, this way kind of works but is quite long winded; also it bumps into problems whenever I add menus to menus.
    If some one out there has previously done this before and are willing to share their code with me I would be ever so grateful. Else any suggestions would be extremely well received.
    thanks in advance
    - Edd.

    What we are using for dynamic menu creation is XML.
    Something Like:
    <Menu name="Setup">
      <MenuItem name="Security" class="com.epservices.apps.security.Security" args="" />
      <MenuItem name="Parent Company" class="com.epservices.apps.parentco.ParentCompany" args="" />
      <MenuItem name="Company" class="com.epservices.apps.company.Company" args="" />
    </Menu>
    <Menu name="Tax Set up">
      <MenuItem name="Tax Authority" class="com.epservices.apps.taxauthority.TaxAuthority" args="" />
      <MenuItem name="Tax Form" class="com.epservices.apps.taxform.TaxForm" args="" />
      <MenuItem name="Tax Code" class="com.epservices.apps.taxcode.TaxCode" args="" />
    </Menu>Then we simply parse it using SAX and build the structure.
    Here's a great article on mapping XML to Java objects:
    http://developer.java.sun.com/developer/technicalArticles/xml/mapping/

  • Dark grey square appearing behind every first sub-level menu

    I have created a horizontal Spry menu - it works perfectly in all major Windows browsers, except for one thing, there's a dark grey (probably the hover color) box slightly offset behind every first sub-level menu. I think it is a css issue - I have tried disabling my main stylesheet without any effect - so there is something with the SpryMenuBarHorizontal.css - but I can't figure it out.
    See http://www.perberntsen.com/ The Spry stylesheet is here
    Thank you.

    Hi Per,
    Delete line 113 of your CSS as per example:
    ul.MenuBarHorizontal ul
    border: 1px solid #000;  /* Border around the Submenu blocks */
    Rather than modifying the original Spry-stylesheet, create a new stylesheet (myStyle.css) that loads after the Spry-stylesheet, and place your mods in the new sheet. That way it will be easier to track down problems.
    Hopefully this helps.
    Ben

  • Menu Creation in PE12

    Is the menu creation any different in PE12 compared to 11? I was very unhappy with the low resolution DVD menus and Blu-ray (just aweful) menus when creating my own custom menus using my high resolution pictures. Really Adobe is this all you can give us in PE11? Power Director 12 creates beautiful high resolution custom menus but the drawback was interlaced DVD?! I want to use Adobe for progressive DVDs if they can get the menus to look decent. Any help is appreciated.

    Christopher_D_303
    You wrote
    I want to use Adobe for progressive DVDs if they can get the menus to look decent.
    I just wanted to make sure that you were talking about AVCHD format burned to DVD disc and not DVD-VIDEO on DVD disc.
    All the Premiere Elements 12 burn to have 29.97 or 25 interlaced frames per second frame rates except two under AVCHD DVD, both with 23.976 progressive frames per second frame rate
    H.264 1920 x 1080p NTSC Dolby
    H.264 1440 x 1080p NTSC Dolby
    We aware that the project preset selected to match the properties of your source media will direct the program as to which version of the disc menu .psd sets to make available to you s, w, hd.(standard, standard widescreen, or high definition).
    All the s and w psd sets are at Image Size 720 x 576 whether the project is NTSC or PAL. The hd set is typically 1440 x 1080. More on that another time. What is the original pixel dimensions of these photo inserts for the disc menu? What version of Photoshop do you intend to create these menus in?
    ATR

  • Best Menu creation program for DW

    Just upgraded to CS3 and, consequently, following the herd to
    Dreamweaver.
    Could anyone recommend a Mac-based menu creation plugin that
    might work as well as MenuMachine?

    I'm not familiar with MenuMachine, but you might find a menu
    system from
    Project VII that will work:
    http://www.projectseven.com/products/menusystems/index.htm
    The tools are flexible and powerful and very easy to use and
    customize.
    Their support is absolutely the best.
    John
    "mrsnak" <[email protected]> wrote in
    message
    news:fft4ap$33i$[email protected]..
    > As a casualty of Adobe trying to herd us away from
    GoLive, I'm biting the
    > bullet and preparing to move all my long-term sites to
    DW. Have not worked
    > in
    > it yet, am a little concerned since I'm so comfortable
    with GL and its
    > site
    > management.
    > I iuse the excellent MenuMachine for GL in almost all my
    sites. I know
    > that
    > they probably won't make it avaialble for DW.
    >
    > Is there a comparable one for DW that works as well?
    > TIA
    >

  • How to add a top level menu to TestStand Sequence Editor

    Hi,
    Am unable to add a new top level menu item like File, Edit, Tools, Windows in Sequence Editor. Is it possible to add the same? Can anyone share code snippet to use TestStand API so that a new menu is created?
    Please find the attached snapshot and am trying to add "NewMenu" to SeqEdit. 
    TestStand Version is 4.0 
    Thanks
    Mrm 
    Attachments:
    NewtopLevelMenu.JPG ‏184 KB

    Hello Mrm,
    Adding a new menu is not going to be possible since the source code of the Sequence Editor is not accessible. However, you do have a few options:
    1) Add a new toolbar
    2) Create and entry point (configuration or execution) that will show in one of the existing menus. Here is a KnowledgeBase article that describes this more.
    3) Customize the right click context menus.
    4) Build your own UI or customize one of the shipping UI's (since you have access to that source code).
    What is the overall goal in doing this? Let me know so I can assist you further if needed.
    With warm regards,
    David D.

  • How to have some top level menu items not be hyperlinks

    I have a navigation band where 5 of the 6 top level items need to NOT be hyperlinks but simply "category titles" that you mouseover to display the submenu - which are the links to web pages.
    An example of this is on the Amazon.com home page - the items under "Shop All Departments" has categories that are not clickable, but when you mouseover display the clickable submenu.
    Is it possible to customize some but not all of the top menu items and how?
    What do I need to modify in the CSS so that the top "category title" looks/behave the submenu (same font color/bgcolor changes) but no active hyperlink?

    Here is a link to my pagewhere I am testing the navigation. Currently there is only this one page and I have <a href="#"> for the links.
    The only menu item that should be clickable in the top level is "Contact"
    Everything in the second and third level (Events > Research >...) needs to be clickable
    Everything is working as I want except that "Research" needs to be clickable
    - and I would like to have the clickable item text be underline when in the hover state but I want to get the base navigation working first
    The closest matching code I found in the CSS is:
    #MenuBar1 li .MenuBarItemSubmenu,
    #MenuBar1 li ul li .MenuBarItemSubmenu {
        cursor: default;
    If I remove this, all the top level items become clickable. Let me know if there is other information you need. I super appreciate your help with this!

Maybe you are looking for

  • GR IR Clearing account posting to wrong profit center

    Dear All, Here I am encountering the live problem that , After the some customization changes , there was an impact on GR/IR Clearing account with regards to the profit center posting When we receive (GR) , the FI document line item is posting to the

  • No validation of xsl transforms within process

    Hi there, I've posted this before with no avail. I have process which creates an XML schema from a file adpator. The input/output XML validation is turned on, on my BPEL server and is working well. I then transform this XML to another 'global schema'

  • AA3 and AC3 6ch

    Hello, When import ac3 file into Adobe Audition 3 I get this error message: "end of file found too early, data will be truncated". The duration of the source ac3 file was about 65 min in duration, after  importing it into Adobe Audition 3 I end up wi

  • Connecting my iPhone to my car stereo?

    I need something that plugs into the iPhone and then goes into the charger of my car...some kind of transmitter.NOT iTrip or that other crap, something that works well..I don't really like griffin, but let me know what I should use.

  • Data Block (Reference column) URGENT~~ Plz help!

    Hi: i have 3 data block created. Two of them are master-detail. i didn't add on any relationship on third one yet. set "number of records" to be 8 in both 2nd and 3rd datab lock. i need the third one to synchonize with the data in 2nd data block all