How to get child menu to go vertical

hoew do you get chhild menus to go vertical without effecting to main horizonal
I want
Main             about us     dodo      etc
  menu 1
  menu 2
  menu3
Not
Mail             about us     dodo    etc
  Menu 1    Menu 2     Menu 3
OR
Main      menu 1
             menu 2
About Us  Menu 3

Hello,
To get the menu the way you want the plan view should be like the screenshot below.
You also need to make sure that Menu Type is selected as Äll pages in Menu options.
Regards
Vivek

Similar Messages

  • How to get to menu on Apple TV.only get main screen but won't let me go to any of the choices

    How to get menu to show on Apple TV

    what does it display?
    and have you tried another remote or another batt in the remote ?

  • How to get child elements of element in xml?

    public class Test {
         public static void main(String[] args) {
              Document doc = null;
              System.out.println("!!!");
              try {
                   // TODO if path is 'c:' then make it 'c:/'
                   doc=DocumentBuilderFactory.newInstance().newDocumentBuilder().parse("test.xml");
              } catch (Exception e) {
                   System.out.println("exception");
              Element root = doc.getDocumentElement();
              NodeList dsList = root.getElementsByTagName("GenericDataSource");
              Element e = (Element)dsList.item(0);
             NodeList nl = e.getChildNodes();
             System.out.println(nl.getLength());
             Node n  = nl.item(0);
             Element ee = (Element)n;
    }i want to get child elements. but its throwing exception on typecasting. can u tell me why?

    thanks for the info.
    i got 2 solutions
    SOLUTION 1:
    public class Test {
         public static void main(String[] args) throws Exception {
              Document doc = null;
              System.out.println("!!!");
              try {
                   // TODO if path is 'c:' then make it 'c:/'
                   doc=DocumentBuilderFactory.newInstance().newDocumentBuilder().parse("test.xml");
              } catch (Exception e) {
                   System.out.println("exception");
              Element root = doc.getDocumentElement();
              NodeList dsList = root.getElementsByTagName("GenericDataSource");
              Element e = (Element)dsList.item(0);
             NodeList nl = e.getChildNodes();
             int count = 0;
             System.out.println(nl.getLength());
             for(int i=0;i<nl.getLength();i++){
                      Node n  = nl.item(i);
                     //System.out.println(n.getClass().getName()); 
                     //System.out.println((Element)n);
                     if(n instanceof Element){ // this checks for node type
                          count++;
                          System.out.println("Element "+(Element)n);
    SOLUTION 2: :
    XPath xpath  = XPathFactory.newInstance().newXPath();
             InputSource inputSource = new InputSource("test.xml");
             NodeList nodes = (NodeList) xpath.evaluate("//GenericDataSource/*", inputSource, XPathConstants.NODESET);
             System.out.println(nodes.getLength());
             System.out.println((Element)nodes.item(9));

  • How to get the menu reference of a control while runtime

    Hello...
    i want to disable the control's short-cut menu programmatically. i could do it by using the event structure and 'shortcut menu activation' event.
    this is why i am asking about getting the menu reference if individual control.
    is there any other way out without using event structure?

    "Share_Good" <[email protected]> wrote in message
    news:[email protected]..
    > Hello...&nbsp;i want to disable the control's short-cut menu
    programmatically. i could do it by using the event structure and 'shortcut
    menu activation' event.&nbsp;this is why i am asking about getting the menu
    reference if individual control. &nbsp;is there any other way out without
    using event structure?&nbsp;&nbsp;
    No. You have to use the event. But if you simply disgard the activation, you
    don't need to change it's run time menu. You'll need the event structure
    anyway to catch the selected menu item.
    Regards,
    Wiebe.

  • How to get hover menu like adobe

    I am trying to achieve a simple hover suggest like here : http://www.adobe.com/products/dreamweaver/?promoid=BPDEC place your mouse over any of the suites such as design premium. I dont know which widget i can s for this effect. i tried tooltip but that will not work for this(different position each mouse over). i am sure whatever it is it may require a whole lot of customization. Any ideas?

    OK. Thanks very much. i have spent 2 nights looking and trying to get one of those widgets to work , but no success. Do you have any idea how to get started. i have started reading up on the SpryDOMUtils here: http://labs.adobe.com/technologies/spry/articles/element_selector/index.html . I hope it wont require rocket science knowledge to work.

  • How to get the menu-bar back if vertical tabs 0.9.4 is installed and the other bars were already switched off?

    there is no firefox-button anywhere
    in the adress-bar there is nowhere a free space where right-clicking works
    right-clicking in the (vertical) tab-bar doesn't do anything

    Hello,
    In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Thank you!

  • How to get Select menu to determine next set of (hidden) inputs?

    Operating System: Mac OSX 10.6
    Software: Dreamweaver CS4, with local testing environment.
    The website i am currently creating uses form based quotes, (for a printing business).
    See here,      http://www.barringtonprint.com/perfect/quote-continuous.html      for the current webpage i am working on.
    I want to use a select menu to determine how many 'parts' the user requires, and for it to then display the necessary text fields for them to fill in. 
    At the monent the form just has the maximun amount (7) already on the form, and just requires the user to leave the non-required fields empty.
    However i would like the form to just have inputs for the first 'part' (Part 1), with a select menu that gives the user the option to select more than 1 'part' and then display how many more rows of text fields are needed depending on the outcome of the select menu.
    I presume i will need to use javascript to do this but i am unsure on how to proceed.
    NOTE: these are old forms that i have inherited and do use tables, im aware this is not the best way to proceed, however im sticking with them for now.
    Any help will be much appreciated, as this is driving me nuts.
    Andrew Barrington

    I'm sure there are cleaner ways of doing this, but I already had this put together from another project.  Hopefully it will get you started.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Form with jQuery Validation</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <!--JQUERY LATEST-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--JQUERY VALIDATE-->
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js">
    </script>
    <style>
    /**BEGIN FORM STYLES**/
    #contact {
    font-size: 14px;
    width:800px; /**adjust width in % or px as needed*/
    margin: 0 auto; /**adjust margins as needed*/
    background: #FFF;
    border: 2px groove #999;
    padding: 2%;
    #contact fieldset {
    margin-bottom:5px;
    background:#CCC;
    #contact legend {
    padding: 8px;
    background: #000;
    font-weight: bold;
    color: #FFF;
    line-height: 1.5;
    /**wrap form lables and fields inside ordered lists for better web accessibility**/
    #contact ol {
    list-style:none;
    margin:0;
    padding:0}
    #contact li {
    padding:5px;
    margin: 0;
    clear: left;
    #contact label{
    display:inline-block;
    float:left;
    line-height: 23px; /**lines up labels with fields**/
    width:15%;
    font-size: 12px;
    text-align:right;
    margin-right: 10px; /*space between labels, fields*/
    #contact textarea,
    #contact input[type=text],
    #contact input[type=email],
    #contact input[type=number] {
    width: 45%; /**same width on fields**/
    padding: 5px;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    #contact select {width:46.5%}
    /**field background on focus**/
    #contact input:focus,
    #contact input:active,
    #contact textarea:focus,
    #contact textarea:active,
    #contact select:focus,
    #contact select:active
    {background-color: #FFC;}
    #contact label.error {
        line-height:1;
        color:#F00;
        background:#FFC;
        padding:3px;
        box-shadow:1px 2px 3px #333
    /**hidden ids based on selection**/
    #one,#two,#three,#four {
        color: #03C;
        font-weight:bold;
        display:none;
    </style>
    </head>
    <body>
    <p>Conditional Form with jQuery Validation</p>
    <!--begin form-->
    <form id="contact" action="path/form-processing-script.php" method="post">
    <fieldset>
    <legend>Required Fields:</legend>
    <ol>
    <li><label for="first_name">Name:</label>
    <input name="first_name" id="first_name" type="text" required placeholder="First"></li>
    <li><label for="last_name">Last:</label>
    <input name="last_name" id="last_name" type="text" required placeholder="Last"></li>
    <li><label for="e_mail">E-mail:</label>
    <input name="e_mail" id="e_mail" type="email" required placeholder="[email protected]"></li>
    </ol>
    </fieldset>
    <fieldset>
    <legend>Conditional Select - Required:</legend>
    <ol>
    <li><label for="MySelect">Select One:</label>
    <select name="MySelect" id="MySelect" size="5" required title="Please select something!">
    <option value="0">None</option>
    <option value="1">Audi</option>
    <option value="2">Saab</option>
    <option value="3">Fiat</option>
    <option value="4">BMW</option>
    </select></li>
    <!--hidden-->
    <li id="one">
    <label for="option1">You selected Audi:</label>
    <input name="option1" id="option1" type="text" placeholder="Year and Model" />
    </li>
    <li id="two">
    <label for="option2">You selected Saab:</label>
    <input name="option2" id="option2" type="text" placeholder="Year and Model" />
    </li>
    <li id="three">
    <label for="option3">You selected Fiat:</label>
    <input name="option3" id="option3" type="text" placeholder="Year and Model" />
    </li>
    <li id="four">
    <label for="option4">You selected BMW:</label>
    <input name="option4" id="option4" type="text" placeholder="Year and Model" />
    </li>
    <!--end hidden fields-->
    </ol>
    </fieldset>
    <fieldset>
    <legend>Optional Fields:</legend>
    <ol>
    <li>
    <label for="phone">Phone:</label>
    <input name="phone" id="phone" type="number" placeholder="(area code) 123-4567" />
    </li>
    <li><label for="subject">Subject:</label>
    <input name="subject" id="subject" type="text" />
    </li>
    <li><label for="message">Message:</label>
    <textarea id="message" name="message" placeholder="remarks"></textarea>
    </li>
    <li><input name="submit" type="submit" value="Submit">
    </li>
    </ol>
    </fieldset>
    </form>
    <!--end form-->
    <!--form validation-->
    <script>
    $(document).ready(function() {
        $("#contact").validate();
        $("#MySelect").validate();
    //Custom jQuery to show/hide input fields based on selected options//
        $('#one,#two,#three,#four') .hide();
        $('#MySelect').bind('change', function (e) {
        if( $('#MySelect').val() == 1) {
            $('#one').show('slow');
        else{
          $('#one').hide();
        if( $('#MySelect').val() == 2) {
          $('#two').show('slow');
        else{
          $('#two').hide();
        if( $('#MySelect').val() == 3) {
          $('#three').show('slow');
        else{
          $('#three').hide();
        if( $('#MySelect').val() == 4) {
          $('#four').show('slow');
        else{
          $('#four').hide();
    </script>
    </body>
    </html>
    Nancy O.

  • How to get Acrobat menu in MS Office 2013 products

    I purchased a new laptop with Acrobat XI Standard already installed. I have since manually installed MS Office 2013.  How do I get the Acrobat menu in my Office products?  We are a not-for-profit, so I usually purchase software separately and install it myself.  I would normally install Office and then Acrobat, so this has never been an issue for me.
    Thanks for any help someone can provide!

    A "Repair" did not work, however, had I been a little more patient, an "Update" presented itself, as they do nearly daily (!!).  After installing the update, the Acrobat menus appeared in the Office applications.
    Issue resolved!

  • How to get all menu items list in blackberry curve phone

    Hai all
    i am new to Blackberry application developer. I done one application in blackberry in default simulaor, I changed my simulator to Blackberry 8900 simulator. The features is more in curve phones like instant messaging. So i need to get the full menu item list from the API. Do i neddd to change the API ?..  I wanted to get the list like .. camera,maps,contacts,messages,weblin,sms,instant messaging etc. Can anyone help me in this case. My intention to get all the menu items in a list.
    Thanks in Advance

    thank you for your solution.. my aim is list all the menu items in a drop down list. In the default simulator it is fetching all the menu items in the phone through API. But in curve 8900 it is not showing all the menu items, can u give me a suggestion
    like           ^
    camera
    contacts
    maps
    clock
    calendar  like this i need to display
    Message Edited by joedfranc on 05-30-2009 10:57 AM

  • How to get one menu bar in acrobat 9

    Hi Guys,
    I am new to acrobat 9. Earlier I have used acrobat 7. From few days using acrobat 9. And facing some problem.
    The problem is if I open 'N' number of files in acrobat 9, then menu bars also coming seperatly. But if I open same files in acrobat 7, menu bar is coming only once.
    So now I want menu bars only once like acrobat 7. Please check the below link. then you can know the problem exactly.
    http://picasaweb.google.com/haridifferent/Acrobat9And7?authkey=Gv1sRgCLLLyK7GxJyTHA#
    So kindly give the solution for this problem..
    Thanks in advance...
    Regards
    HARI

    So, In short we do not have option to get one menuin acrobat 9 ?
    That's really sad thing. Why because, as you saw my previous screen shorts that in acrobat 9, if I open 'N' number of files, then all menus are coming by file which will create confuse. And to choose the menu options also too dificult. But acrobat 7 works really great with this option.
    Waiting for soltuion from adobe....
    and thanks for reply...
    Regards
    HARI

  • How to get child process instance id from main process

    Hi All,
    I have a main process invoiking a child process 1 and child process 1 inturn calling child process 2.Is there any way to get the child process 2 instance id from main process or main process instance id from child process 2.. Using tree finder in BPEL Control i can find the direct sub process(child 1) instance id from the main process instance. Is it possible to trace Sub process 2 instance id without going for the instance detail of sub process 1.
    Thanks in advance
    ChitraDevi

    you could easily derive this from the bpel cube_instance table. using cikey and parent_id columns. you can use IInstanceMetaData javadoc, it has method called getParentId( ) to get the id. you can get the root id (instance-id of the main bpel process instance) using getRootId( ). you can checkout this blog.
    http://tech-sash.blogspot.com/2008/04/oracle-soa-suite-retrieving-process.html

  • How to get the menu bar to reappear in Safari, OS Lion

    After plugging my macbook to a monitor, now the menu bar at the top of the screen and row of application shortcut icons at the bottom of the screen disappear when Safari is running, whether in full screen mode or not.  Can someone help me reset what ever display option in Safari is causing this? 
    Thanks.

    Hello,
    In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Thank you!

  • How to get iDVD Menu to startup?

    I created an iMovie, sent it to iDVD to create a menu for the movie. When I place the dvd into the player to watch it on my TV, the movie just starts and doesn't show the menu I created with iDVD. Any suggestions on how to fix this or why its happening?
    Thank you

    Go to the Map mode
    and make sure there's no item in the Autoplay bin at the left:
    If there is drag whatever's in the bin out and try again.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process.
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • How to get opaque menu bar?

    It does not appear that Leopaque (Mac Parc) willl be updated for Lion.  Does anyone know of any other app that allows one to disable the ugly translucency to the normal opaque menu bar?

    Sometimes questions are easy. :)
    System Preferences -> Desktop & Screen Saver -> Turn off "Translucent menu bar"
    And you're done.

  • N800 - How to get the pipe symbol AKA vertical bar...

    Hi... the N800 is one slick device. But I have Xterminal installed on it, and I just can't find the vertical bar needed to construct a UNIX command line with pipes. I've checked the screen keyboard, shifted, and also the extended symbol selection. It doesn't seem to show up anywhere. Has anybody found it?
    Thanks,
    Andy

    Michel Boissonneault wrote:
    Hi(Bonjour)!
    Try Option-G on english keyboard.
    Do you know this little widget:
    http://www.tacowidgets.com/widgets/characterpal/
    Very useful.
    Michel Boissonneault
    Thanks Michael, this is cool as it eliminated the need to remember short cut keys !!

Maybe you are looking for