Creation of custom Menus

What I see < netuix:singleLevelMenu > and < netuix:multiLevelMenu > are the only options available in the file .menu - and the skeleton jsp is resolved may be on the basis of < netuix: tagUsed >

We have a requirement for the menu from a JSON file maintained externallly - this design allows the team of the company to change the menu without intervention of the development team. We have create a menu - framework/markup/menu/myCustomMenu.menu.

But there is no documentation on how to do it. URL http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/portals/develop_ui_lookfeel.html#wp1032617 provides only information about customizing the out-of-box singleLevel or multilevel menus.

Ask your advice on how we can proceed with the creation of our custom menu?

Thank you
Prashanth

In your custom menu file, specify the skeletonUri the path of the file JSP that you want to use to display the menu. Then take a look at the existing singlelevel or multilevel menu.jsp files of source code examples make everything what you want to do

<>
title = "Custom Menu" description = "e.g. menu."
markupType = markupName "Menu" = 'CustomMenu' don't
skeletonUri = "custom.jsp" > "

Tags: Fusion Middleware

Similar Questions

  • Creation of custom symbols - streets & trips

    Our office uses streets & trips to create custom cards with a key/legend. We tried to create symbols customized (in this case, the card numbers) using a number of techniques in Photoshop and Illustrator. Streets & trips will accept only Bmp files. If you create the numbers in Photoshop, they are too pixelated and badly the streets & trips. But you can't save or export as a BMP in Illustrator. Thus, we created the numbers in Illustrator, save them as jpg files, then convert BMP files in Photoshop. Numbers look fine until what import us them in Streets & Trips. Then, they become "mottled" - with clear areas bit from the bottom in the numbers. It's too random. The flecks are in locations on each issue, even if it's the same background for each file. Someone at - it a good solution for the creation of custom symbols that will work in the streets & trips?

    Hello

    Check with the streets and the support of the TRIPS Agreement and ask in their forum.

    Streets & Trips
    http://www.Microsoft.com/streets/en-us/default.aspx

    Streets & Trips - help and Support
    http://www.Microsoft.com/streets/en-us/support-and-training.aspx

    Streets and travel community
    http://www.Microsoft.com/streets/en-us/community-and-news.aspx

    Streets and travel Forum
    http://social.Microsoft.com/forums/en-us/streetsandtrips/threads

    Support for MapPoint, streets & trips and Highway
    http://support.Microsoft.com/ph/851

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • Standards for the creation of custom Pages/Applications in Oracle eBS OFA

    Hello

    Have we not a document of standards/Steps for the creation of Pages CUSTOM OA Framework in Oracle eBS. I'm looking for something similar to the development of custom form in Oracle eBS.
    If so, please share the same.

    Waiting is, to have these standards, in order to ensure future versions of Oracle, supported the custom developed objects.

    Thanks in advance,

    Please see jdeveloper help documentation, framework.

    Kristofer Cruz

  • Creation of custom device

    I am trying to create a custom device that makes it easy for a user to configure many digital output channels. My camera is now Initializes in VeriStand without any problem. I have a hierarchical design with a folder "Output Module 1' containing 32 channels. I've added the output Mode (U16) properties and enable State (Boolean) for each channel. The problem is that I don't know how to set the values of these properties in the design of LabView. I tried to use the Set point property VI to write a new value for each property without a bit of luck. I tried different others live too, but none seem to set the value of the property. I get a response to change the values in the "front" page in VeriStand System Explorer, but when I click on a channel to look at properties, nothing has changed.

    I followed step by step custom device guide http://zone.ni.com/reference/en-XX/help/372846J-01/veristandmerge/cust_device_overview/ of OR.

    My hunch is that my lack of familiarity with the node pointers cause me problem. Does anyone have an idea about this problem?

    Hi MitchD319,

    If I understand your question, the following resource should be helpful:

    Adding the element of custom device properties

    http://zone.NI.com/reference/en-XX/help/372846J-01/veristandmerge/adding_cd_properties/

  • Problems of creation of custom buttons

    Hello, I'm trying to create three custom buttons here in my application's main window.  I did a CustomButtonField class to try to change around the colors and size, but when I run my application no buttons appear in my application?  What I am doing wrong?

    Help, please.

    The main window class.

    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.FontFamily;
    import net.rim.device.api.ui.MenuItem;
    import net.rim.device.api.ui.Ui;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.decor.Background;
    import net.rim.device.api.ui.decor.BackgroundFactory;
    
    public class MainPage_Recipes extends MainScreen
    {
    
        private VerticalFieldManager _manager ;
        CustomButtonField findButton;
        CustomButtonField submitButton;
        CustomButtonField aboutButton;
    
        public MainPage_Recipes()
        {
    
            try
            {
    
                 FontFamily Global = FontFamily.forName("BBGlobal Serif");
                 Font appFont = Global.getFont(Font.PLAIN, 8, Ui.UNITS_pt);
                 setFont(appFont);
    
                 Bitmap labelImage =  Bitmap.getBitmapResource("chef2.png");
    
                 add(new CustomLabelField ("Find A Recipe", Color.WHITE, 0xff0000, labelImage, Field.USE_ALL_WIDTH));
    
                 _manager = (VerticalFieldManager)getMainManager();
    
                 Background bg = BackgroundFactory.createSolidBackground(0x00DDDDDD);
                 _manager.setBackground(bg);
    
                 FieldChangeListener findCan = new FieldChangeListener()
                    {
                        public void fieldChanged(Field field, int context)
                        {
                            findRecipe find = new findRecipe();
                            UiApplication.getUiApplication().pushScreen(find);
                        }
                    };
                 FieldChangeListener submitCan = new FieldChangeListener()
                    {
                        public void fieldChanged(Field field, int context)
                        {
                            submitRecipe submit = new submitRecipe();
                            UiApplication.getUiApplication().pushScreen(submit);
                        }
                    };
                 FieldChangeListener aboutCan = new FieldChangeListener()
                    {
                        public void fieldChanged(Field field, int context)
                        {
                            aboutApp about = new aboutApp();
                            UiApplication.getUiApplication().pushScreen(about);
                        }
                    };
    
                 findButton = new CustomButtonField(" Find Recipe ", Color.WHITE, Color.BLACK, Field.FIELD_HCENTER);
                 findButton.setChangeListener(findCan);
                 submitButton = new CustomButtonField(" Submit Recipe ", Color.WHITE, Color.BLACK, Field.FIELD_HCENTER);
                 submitButton.setChangeListener(submitCan);
                 aboutButton = new CustomButtonField(" About ", Color.WHITE, Color.BLACK, Field.FIELD_HCENTER);
                 aboutButton.setChangeListener(aboutCan);
    
                 _manager.add(findButton);
                 _manager.add(submitButton);
                 _manager.add(aboutButton);
    
                 add(_manager);
    
            }
            catch(Exception e)
            {
    
            }
        }
        protected void makeMenu(Menu menu, int instance)
        {
    
            menu.add(_close);
            menu.add(_cancel);
    
        }
        private MenuItem _close = new MenuItem("Close", 110, 10)
        {
            public void run()
            {
    
                Dialog.alert("Goodbye!");
    
                System.exit(0);
    
            }
        };
        private MenuItem _cancel = new MenuItem("Cancel", 110, 10)
        {
            public void run()
            {
    
            }
        };
    
    }
    

    Class CustomButtonField:

    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Graphics;
    
    public class CustomButtonField extends Field
    {
        private String label;
        private int backgroundColor;
        private int foregroundColor;
    
        public CustomButtonField(String label, int foregroundColor,
                int backgroundColor, long style)
        {
            super(style);
            this.label = label;
            this.foregroundColor = foregroundColor;
            this.backgroundColor = backgroundColor;
    
        }
        public int getPreferredHeight()
        {
            return getFont().getHeight() + 8;
        }
    
        public int getPrefferedWidth()
        {
            return getFont().getAdvance(label) + 8;
        }
    
        protected void layout(int width, int height)
        {
            setExtent(Math.min(width, getPreferredWidth()), Math.min
                    (height, getPreferredHeight()));
    
        }
        protected void paint(Graphics graphics)
        {
            graphics.setColor(backgroundColor);
            graphics.fillRoundRect(1, 1, getWidth()-2, getHeight()-2, 12, 12);
            graphics.setColor(foregroundColor);
            graphics.drawText(label, 4, 4);
        }
        public boolean isFocusable()
        {
            return true;
        }
    }
    

    Help, please.

    Thank you

    Scientist

    Hi, I discovered very pblm is

    This.getPrefferedWidth usage and height, I think you will get it.

    protected void layout(int width, int height)     {     // TODO Auto-generated method stub        this.setExtent(this.getPrefferedWidth(),this.getPreferredHeight());   }
    

    Concerning

    Rakesh Shankar.P

  • (Tabs) blackBerry Smartphones customizing menus

    Hello world

    Looking for a way to customize the menus tabs. I think the default menu has too many tabs (ie: frequent, all, downloads, etc...) and I wanted to combine some icons and remove some of the tabs - I looked in all the documents in line/manual and it doesn't say how. Maybe there is no option to change this.

    Thanks in advance for your answer.

    See you soon,.

    Steph.

    If you really don't like the tabs (many do), opt for a different theme. Many are built without tabs take a look at BB App World first. They are broken down into different categories. Some are free - the drop down at the top right, let's order you by $. I hope this helps.

  • Add custom menus choices?

    Just to start fooling around with the shooting script of this aspects, it's a little foreign to me until now (I'm used to shooting scripts in a format of columns and rows multi with boxes with a line), but came through a question.

    When adding a coup (in the non-destructive version of this phase, one where it doesn't turn all for all uppercase) and using the space bar to add elements of shooting menu drop-down lists... is it possible to add our own choices to these menus?

    Specifically "movement of the camera." I wish I could add something to this menu that represents just a nice normal locked no shot movement. I really don't want to use steadicam because it implies the movement. I want to use 'locked off the coast', 'static' or even 'tripod' would work.

    Hi Cadillacula,

    The team let know here: [email protected]

    See you soon,.

    Kevin

  • creation of custom in the Complutense University of MADRID component

    Hi all

    I'm a newbie in the Complutense University of MADRID. I need to created a component custom that will insert and update the record in the table of the Complutense University of MADRID. How to do this? I can't find any example on google.

    its urgent assistance please.

    Check the samples component how-to for Oracle UCM 11g | Bex Huff

    There is a single component, DataAccess, that shows exactly how.

  • Creation of custom in iexpenses expense categories

    Hi gurus,

    To use the load model in I spend modules, I created the expense report model AP-> Configuration-> invoice-> expense report template.

    Here we have some predefined category of expenses such as accommodation, airfare, rental car, meals, mileage, various and Per Diem. Now, my need is that I have to create a custom category and must in this populist.

    Please let me with navigation how to achieve this.

    Thank you
    Vuvu.

    Hi Vladimir,.

    You can't have the expense categories USER-DEFINED, you must use predefined expense categories / seeds only.
    Seeded categories are stored in accounts payable OIE_EXPENSE_CATEGORY research that has the level of the access system, so we can't add/change the values of research more under him. (Navigation for the search is configured > research > Payables)
    In fact any type of expense that an organization can be mapped in seeded categories provided...
    I think that this restriction is due to the construction in the policy configuration validation based on the categories of expenditure.

    Oracle also claims, any changes made to the OIE_EXPENSE_CATEGORY would be considered as CUSTOMIZATION, this is why it would not be supported.
    See - [ID 784448.1] - cannot change the search system "OIE_EXPENSE_CATEGORY".

    Kind regards
    Ivruksha

  • Required document on the creation of custom workflow.

    Is there a document describing how to create a new workflow completely? I also want to know the stuff build us a workflow customized with several levels of approval in the ERP?

    Hello

    Thanks for the link to the document. Well let me know is possible to create a workflow with 6 levels of approval. Pls suggest.

    Yes, it is possible to do. Approval levels depending on the design of your workflow and of your business needs, there is no specific limit to the number of approval levels.

    Kind regards
    Ousseni

  • Creation of customer order IN.

    Hello

    Please let me know if there is any functionality of oracle standard by which we can ensure that purchase order contains no elements of customer orders. for example if there are several command so a PO must be generated for each order.

    At the time of the application to import, you can specify parameters such as

    1. the buyer
    2 category
    3 point +.
    4 location
    5. the seller
    There are no parameters as command, so we'll end up creating a PR of multiple customer orders and then PO would be created of PRs.

    Let me know if we can achieve the functionality to create unique IN. for each sales order.

    Thank you

    If you have different providers for items in a sales order, you can create different POs.

    Assuming that all elements are going to the same vendor, you can consider a simple customization as follows
    Write a trigger before insert on the po_requisition_lines_interface and do the requisition_number or even the group_code of all items on a sales order.
    That will make the import of requisition program put all these lines on a request.

    Hope this helps,
    Sandeep Gandhi

  • Doubt on creation of custom form

    Hi all, I am new to Oracle Applications.I would like to know why we need a template.fmb for creating a form customized?
    any help is appreciated

    Thanks in advance!

    Published by: sand on Sep 20, 2011 10:02

    Sandy,
    The MODEL. FMB is used to ensure you EBS Custom form has all the minimum requirements of EBS framework included in your form. Develop a form for the Enterprise Business Suite (EBS) is not the same as the development of a stand-alone application forms. This is why there is a separate forum (Discussion of EBS) dedicated to the development of forms of BSE.

    As you are new to the development of forms of BSE, I recommend that consult you the library of Documentation of Oracle Applications . This library explains the use of the TEMPLATE.fmb and the APPSTAND.fmb and related forms libraries that are needed in all forms of EBS Custom. Just select your EBS version and then scroll to the section of the standards and review the following documents:


    • The Oracle Applications Developer's Guide
    • Oracle Applications Interface standards user for forms-based products
    • Oracle Application Framework Customization Guide

    Hope this helps,
    Craig B-)

    If someone useful or appropriate, please mark accordingly.

  • Creation of custom made size presets

    Hello

    I have tried several times to create custom size documents in PES 10 without success. 

    I for example in the file Menu select New Document and key sizes needed to make any adjustment. I name the file and close the document.

    When I open a document to select a custom preset that I have created the custom view box but the drop zone 'Size' (where I have to choose my preset) is grayed out.

    Seems I'm not the only person who has problems with something which are normally simple and I wonder if the problem is down to a control, or a bug.

    Help would be greatly appreciated, thanks.

    Normally the photoshop elements does not allow the user to save the new document presets.

    You can add parameters predefined dialog box new document by editing the text of new document file, but it's a pain.

    This script (create new canvas of Paul Riggott) will save the document presets and you can also add guides. However, you still need to use this script to access

    the presets, they will not appear in the file > New > empty file dialogue. (this script should work in pse 6 pse 10 thru)

    (the only thing that won't work in the elements is the CMYK setting)

    https://Acrobat.com/#d=oBbSEVclD * KGKGGRBZ3bTA

    Installation:

    1. download and unzip the file

    2. right click on the script and choose copy.

    3. go to the folder of scripts 10 pse, right-click in an empty area and choose Paste.

    Windows x 64 systems:

    C:\Program Files (x 86) \Adobe\Photoshop elements 10\Presets\Scripts

    32-bit Windows systems:

    Adobe Photoshop C:\Program 10\Presets\Scripts elements

    I'm not sure of the exact path for a mac system.

    4. start or restart PES 10 and the new canvas create script should be listed under file > automation tools.

    To create a new preset press, add new canvas after opening of the script, enter the information and then press the Web button and preset should appear in the dialog box create a new canvas.

  • Creation of custom styles/skins

    Hello!
    I work as a web designer/graphic designer in a company in Stockholm, Sweden. We have recently started working with Flex and it worked out great. As I'm the only artist here, it's my job to create all the graphics, including the Flex skin.

    So far I have been editing the skin existing (in Flash) and added new capital by duplicating current (such as for example the buttons). It seems to work perfectly, but I know one day I probably will have to create something more personal than that. In addition, it would be nice to get your hands on the workflow and not locked to editing existing content all the time.

    I tried to find a guide that explains everything, but I can't find anything. The main thing that I can't get my head around is how you create these guides 'custom' to determine the way of assets globally. Gray, dotted guides.

    So if anyone know of a good "getting started" tutorial, I'd be eternally grateful.
    Thanks in advance!

    Kind regards
    Olof Brickarp

    You are not alone. I get a lot of customers who have the same questions.

    First of all, it depends on which tool you use on how to add the scale 9-slice. If you use Flash, from the properties of the symbol, check "Enable guides for 9-slice scaling.

    Continuing with Flash, consider the timeline for the symbol, then import the Flex work in Flex Builder. Note the correlation between the States and parts of the skin. With a little time and effort, you create the button of dog barking without delay.

    HTH

  • Creation of custom maps

    Hi all

    I would like to create a custom map (in jpeg format) with the (0,0) coordinates, in the middle of the map image. When the user hover your mouse on the map, contact details of the map where is the cursor will be displayed. Coordinates changes as the cursor moves.

    It's something like the google map. But I would use my own card instead of the world map.

    Any help is appreciated. ^^

    Thank you. It was fun to write. I used a box, but a picture should work the same way. Simply put the code below into a new application and run...

    Note: to make the Center 0, 0, then just a few mathematical functions by using the width and height of the image.


    http://www.Adobe.com/2006/mxml"layout ="vertical ".
    backgroundColor = "0xDDDDDD" >


    Import mx.controls.Alert;

    private void showMouseCoords (): void
    {
    If (false is mousePointer.visible)
    {
    mousePointer.visible = true;
    }

    mousePointer.x = stage.mouseX - mousePointer.width / 2;
    mousePointer.y = stage.mouseY - mousePointer.height / 2;

    mouseBoxCoordsLabel.text = "box: mouseX =" + myBox.mouseX + ", mouseY =" + myBox.mouseY; "" ""
    mouseStageCoordsLabel.text = ' stage: mouseX = "+ stage.mouseX + ', mouseY =" + stage.mouseY; "" ""
    }
    ]]>


    backgroundColor = '0 x 008800' / >


    Click = "Alert.Show (' mouseX =" + myBox.mouseX + ', mouseY = "+ myBox.mouseY);" / > "


Maybe you are looking for

  • downloaded the yahoo toolbar to see my yahoo Favorites but I can't connect to them, why?

    I downloaded the yahoo toolbar because it was the only way to keep them. Done that got the red flag down there and got a pop up sign in French - pressed sigh in and keep lifting the same pop. I can't get any help for yahoo or Firefox on it, it's like

  • Replacement of the LCD E1-571-33124G50Mnks

    I buy a new LCD for my Acer aspire laptop, I found a good screen on Amazon and I need to be sure that it fits in my laptop, here is the link: https://www.amazon.com/gp/product/B003TQC3BG/ref=ox_sc_act_title_1?ie=UTF8&psc=1&smid=A2J2RVYEZZOYEY I would

  • It's about microsoft outlook express 2007 sending mail

    It's about microsoft outlook express 2007. When I send an email from my ms outlook express with somes pictures on this subject, the recipient mail do not visualize the images. How to solve this problem?

  • Completely uninstall the Roxio Media Manager in Windows XP

    Original title: uninstall a program How to uninstall a program that tries to install when I start up my laptop? The program is Roxio Media Manager, it tries to install, however, "Can't find a c ESTAMP file" appears.  He continues his attempts to inst

  • Testing with sandbox and In - App purchases no longer works

    Hi, I'm currently testing in-app purchases...It worked well for a while, but now when I try to access the app on AppWorld with the contentID or the SKU I get this error message: "we are unable to connect to blackberry appworld please make sure that y