Need assistance on the implementation of Multi level menu

Hi all

Need assistance on the implementation of Multi level menu

Thank you
ANU

Hi Anu,

Please go through this link Multilevelmenu to implement navigation

Thank you

Tags: Fusion Middleware

Similar Questions

  • PIX506E need assistance in the implementation of PDM

    Hello

    I received a statement on the website of cisco on how to install PDM. I got the following error

    pixfirewall # copy tftp://192.168.1.254/pdm-301.bin flash:

    copy of tftp://192.168.1.254/pdm-301.bin for flash: image

    !!!!!!!!!!!!!!!!!!!!!!!!!!!

    Receipt 3126944 bytes

    No PIX image found in the downloaded file

    Image is not installed

    pixfirewall #.

    Can someone help me on this?

    pixfirewall # sh flash

    Flash file system: version: 3 magic: 0 x 12345679

    folder 0: origin: 0 length: 1925176

    file 1: origin: 1966080 length: 3005

    file 2: origin: 0 length: 0

    file 3: origin: 2097152 length: 3126944

    folder 4: origin: 0 length: 0

    folder 5: origin: 8257536 length: 308

    pixfirewall #.

    pixfirewall # sh ver

    Cisco PIX Firewall Version 6.3 (1)

    Cisco PIX Device Manager Version 3.0 (1)

    Updated Thursday 19 March 03 11:49 by Manu

    pixfirewall up to 36 days 2 hours

    Material: PIX-506E, 32 MB RAM, Pentium II 300 MHz processor

    Flash E28F640J3 @ 0 x 300, 8 MB

    BIOS Flash AM29F400B @ 0xfffd8000, 32 KB

    0: ethernet0: address is irq 10 XXX

    1: ethernet1: address is XXX, irq 11

    Features licensed:

    Failover: disabled

    VPN - A: enabled

    VPN-3DES-AES: enabled

    Maximum Interfaces: 2

    Cut - through Proxy: enabled

    Guardians: enabled

    URL filtering: enabled

    Internal hosts: unlimited

    Throughput: unlimited

    Peer IKE: unlimited

    This PIX has a restricted license (R).

    Serial number: XXX

    Activation key running: XXXX

    Modified configuration of enable_15 to 15:17:20.642 UTC Thursday, May 13, 2004

    pixfirewall #.

    For the execution of PDM from your desktop, two commands are required.

    Enable http server

    http 192.168.1.X 255.255.255.255 inside

    PDM is a command of bookkeeping, do not usually mention the PC that can run the PDM.

    Another point, it must the https://192.168.1.1

    Give the above mentioned orders and it works perfectly.

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • I need assistance in the import of certain vectors, watercolor color chart and other creative market (step by step instructions).  Im a newbie to Illustrator and need help.

    I need assistance in the import of certain vectors, watercolor color chart and other creative market (step by step instructions).  Im a newbie to Illustrator and need help.

    Should be the subject of the file > open.  After the download.  The swatches will come with the file.

  • Multi level menu

    Hi friends,
    Can someone guide me to create a better multi level menu using jquery. Most of the plugins that I ran into was not compatible due to the jQuery version...
    Please advice...


    Kind regards
    Sitbon

    Dear magneto,

    If this is what you need
    http://Apex.Oracle.com/pls/Apex/f?p=30734
    DDM/ddm

    then it will guide you
    Re: Create a DHTML Drop down

    If the answer to the question, would you please close the thread as answered and give the points where won...

    Best regards
    Mahmoud

  • I need assistance to the screen resolution of my pages

    Hey guys!

    Thank you very much for taking the time to read this. This time I really need help on the screen resolution and the location properties, that I use in Muse so that my pages and objects placed in it would fit perfectly in the higher resolution screens. The question is this:

    I start the design of a Web site and well, I had no problems at all. Everything perfect and the preview in my laptop looked amazing (720 p). However, I tried to see the same page on my desktop which is 1080 p and BOOM! Everything was completely messed up. The bottom had empty spaces, the sidebar has been like 20 pixels away from were it should well, suff like that. Below some pictures and link of how it looks. I want to do is make the page perfectly any resolution people use to visit. Also, I want the social networking to be the end of the page, but it won't happen soon whatever I do.

    Thank you very much and I'm really sorry if this is a stupid question, but I tried to find an answer in the forums and the Googling it but I did get no result.

    Overview: http://randomproject.businesscatalyst.com/index.html

    PD: I also tried to change the resolution to a superior, as 1280, but still no luck.

    aaa1.jpg

    aaa2.jpg

    What you are experiencing is exactly the way that muse is currently working. What you are wanting to do is called delicate design which Muse does not support yet, but will be in the next version. In order to use the tools now you can join the public beta version to the www.museprerelease.com.

  • I need assistance with the follow-up of

    laser.png

    OK the video you can see on my youtube is that I need help. The video is actually in 1080 p and I don't know why, it's show in such a low resolution, but this isn't the problem. I need follow the gun and add value null to this track, after that, I want to add a red solid layer and bring back some of its opacity to simulate a laser gun sight. Then I tried to parent and SHIFT red solid to the track, the final product should look like what you see in the image. I saw a TON of videos on the follow-up and can not the result I need. the laser must follow gun I aim toward the top and bring the gun to fire. How can I do that..? Please someone help or link me a tutorial that you will find useful...

    You must follow two points on the gun, a front and a back if you get angle, scale, and rotation. Apply to null, then parent to your beam.

    It is so small and the background is so similar to the firearm that track will be difficult.

  • HP 500 MT: Need assistance for the hardware upgrade

    I have a HP 500 MT, product number: XT419EA #AQC, SN: [Moderator published serial number]

    I tried to search your database for this product number, but only a message 'no result '.

    I'm trying to add more memory ram and if possible a larger CPU.

    In the bios under system information it details are the following.

    Type of processor

    INTEL (R) Core (TM) 2 Duo CPU E7500 @2.93

    Processor speed: 2.93 GHz / 1066 MHz

    RAM cache (L2): 3072 KB

    RAM is 2048 MB/PC3 - 8500

    2048 MB DDR3 SDRAM

    If possible could you please tell me what motherboard, I have as well.

    I went to incredible connection & bought a DDR3 4 GB of Ram card.

    He settled in housing, but when I turn on my HP, it starts to beep & my screen does not light.

    Any help will be appreciated.

    Hello

    Thanks for posting the number of product for your microphone HP Tower.  I ask HP to display the specifications that the other members of the community will benefit from the information.

    I'll ask a moderator to remove the serial number posted.

    I'll see for additional information that I can find.  These basic featuresare displayed on the internet.

    Your first consideration should be Support HP or HP sales during the consideration of upgrades or replacement of memory. If you want to consider other manufacturers of the best way to avoid memory problems is to contact one of the leading manufacturers of memory. I would recommend that you try the tools of these manufacturers: Corsair, Kingston andCrucial. Once you have determined the DIMMs that you need, then contact commercial or technical support to check that you have selected the correct DIMMS. If you buy directly from manufacturers, then they will stand behind their products.

  • I need assistance with the installation of 3 failures of updates for windows vista with error code 646

    I tried all day install the following updates:

    1 security Update for Microsoft Office Excel 2007 (973593 KB)
    2. security Update for Microsoft Office System 2007 (973704 KB)
    3. Update for Microsoft Office Word 2007 (974561 KB)

    Updates have been through to 4 am cst, but when I turned on my pc today, Windows Update showed that I needed to install updates 3 mentioned above. I tried all day to make install, but each attempt failed. I clicked the button 'Try Again' and always updates does not pass.

    I deleted the files that I no longer use of haven't used in a year or two. I also deleted some files that I have no use for out the files in the folder my documents. I even emptied my recycling bin to help clear up some disk deespace, still nothing.

    I tried the suggestions that are currently on the forum, but do not always help.

    When I went to manually download updates an error pops up saying "Package of Installation failed."

    Help, please. I need of new suggestions or something.

    I had to disable the "User Account Control" (UAC), which allows you to run as administrator in Vista.  After that I turned it off, all 4 of these updates installed and it doesn't require manual installation.   Follow these steps:

    In the case of Vista view:

    1.) go to start; Control Panel; "User accounts and family safety"; User accounts.
    2.) click on 'Enable user account control or disable' (last point on the page)
    3.) clear the checkbox "Use User Account Control (UAC) to help protect your computer" and click "OK."
    4.) restart the computer, and then run the installation of the system and they work.

    If you are in Classic view:

    1.) go to start; Control Panel; Security Center
    2 screen.) in the "Windows Security Center", go to the last item "User Account Control" and click the button to turn off.

    You can also see the security shield in your Start menu.  You can also access the UAC via this.

    After that the installation of the system have been updated, make sure that you go back and turn the UAC "" and then restart your computer so that unauthorized updates do not occur.   Always try this turn off if install doesn't work.

  • I need assistance with the signing of the app

    So I made an android app and when I heard about the offer of playbook I went and reconditioned using package online Manager. I sent my app for review and I just got an email saying that my application has not been approved because it has not signed correctly. I am so confused, I need help.

    HM, strange. I used the tool to sign several apps (loading of Android applications on my PlayBook is such a pleasure), and it worked very well.

    Open your BAR with WinRar or WinZip file, there should be 2 folders inside. META-INF folder must contain a MANIFEST file, two files RDK and two files of the AUTHOR if the app is signed. If you don't see these files not try once more with the online tool, if you have doubts about the measures, just ask, we will try to help you.

  • I need assistance with the sending of a document FRO my e-mail here for GIS.

    Need help with gettingPDF document from AOL to send by e-mail account.

    Thank you

    Hello Daphnec64268570,

    If you want to send the document to the signatories to esign, then you can refer to the link below:

    https://helpx.Adobe.com/document-cloud/help/send-agreement.html

    -Usman

  • Need Info for the implementation of Service Analytics

    Hello

    My clicnet is planing to implement effective analytical service, I would like to know that the procedure is one where to start what must be installed.
    We will use applications sibel and what are the things to supported during the installation of a BI applications for analytics service. We are plaing to install 7.9.6.3
    Please let me know the procedure.

    Kind regards
    Malli

    2 corrections:

    (a) Veera not what
    (b) what I sent you is guide of config bi apps with related information ebs, siebel, gentle people and jde, check out this link which is chapter 11, as I said earlier
    http://docs.Oracle.com/CD/E20490_01/BIA.7963/e19039/config_service_analytics.htm#BABBJFGB

    I appreciate if you mark as correct

  • I need assistance with the timeline!

    I know how to get timeline but it allways opens like a chronology of animation image and I don't know how to change the type of video, need urgent help, thank you for reading (I need it so that I can make my animations)

    Please report if you have any questions.

  • Need assistance for the resettlement of Creative Suite 6

    I just bought a new iMac. Apple made a transfer of documents, etc. from my old MacBook Pro.

    I was told that I might have to reinstall the creative thereafter.6. When I try to Uninstall what is there (I can open InDesign but not Photoshop or Illustrator) I get a message that tells me to get Application Manager. I do that and nothing happens. I can't find where it was placed on or in my Mac. And what is the Application Manager supposed to do anyway?

    Help?

    Ginny,

    Apple utility that you use to backup only Adobe software not fully backup, so you will need to re - install products, CS6 can be installed using Adobe Application Manager 6.2 (also called AAM) if its subscription based.

    Also simply run the Creative Suite cleanup tool and try again.

    BR,

    -Nitin

  • I need assistance with the HTTP request procedure

    This is the message I get debug, attempting a HTTPService request as follows
    < mx:Application... initialize = "myService.send ()" >
    Import mx.rpc.events.ResultEvent;
    < mx:HHTPService id = "myService" url = "" data / myInfo.xml "result =" resultHandler (event) "/ >:"

    [SWF] C:\Documents and Settings\ArchiMaster\My Documents\Flex Projects\krsl_corp\bin-debug\krsl_corp.swf - 786 719 bytes after decompression
    [Fault faultString = "HTTP request error" RPC faultCode = "Server.Error.Request" faultDetail ="error: [IOErrorEvent type ="ioError"bubbles = false cancelable = false eventPhase = 2 text =" Error #2032: stream error. "]] ["URL: file:///C:/Documents%20and%20Settings/ArchiMaster/My%20Documents/Flex%20Projects/krsl_cor p/bin-debug/data/ilungas.xml"]. ["URL: data / ilungas.xml"]
    to mx.rpc::AbstractInvoker / http://www.adobe.com/2006/flex/mx/internal:faultHandler () [E:\dev\3.0.x\frameworks\project s\rpc\src\mx\rpc\AbstractInvoker.as:216 ]
    at mx.rpc::Responder/fault() [E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49]
    at mx.rpc::AsyncRequest/fault() [E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest .as:103]
    to DirectHTTPMessageResponder / errorHandler ([E:\dev\3.0.x\frameworks\projects\rpc\src\mx\mes saging\channels\DirectHTTPChannel.as:343])
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/redirectEvent()

    What it means? In addition, I do not use the default workspace, so Flex created only the ".metadata' but not the 'configuration' file, that is why, I had to copy a block as the default workspace. So, how do you get Flex to create two files no matter the location of the workspace? I really need help. Thank you!

    Looks like the error message saying that "data / ilungas.xml ' was not found. You use url = "" data / myInfo.xml ' in your service. " They do not match.

Maybe you are looking for