How to hide/show a menu item?

Hi,
Pls suggest how to do this:
There is one book( say "one") and one page (say "two") on the portal, which are displayed to user as menu items.
The book has two pages ( say 'a' and 'b'), which are shown in the menu dropdown of "one". I want to show the menu item "two" only if the user selects 'a' and hide it when select 'b'.
meny item 'b' is a page with one portlet.
Pls suggest.
thanks

You can implement this with backing files.
See http://e-docs.bea.com/wlp/docs81/ipcguide/backing.html for further details.
--Stefan                                                                                                                                                                                                                                                                           

Similar Messages

  • How to make "show all menu items" permanent?

    Does anyone know a preference setting in CS4 to make "show all menu items" enabled all the time?  I use certain menu items regularly which require the extra step of chosing "show all menu items" before they will appear in the menu.  I would love to change this irriating setting.  I have searched preferences over and over and I know there must be one that addresses it, but I cannot spot it.

    The essentials workspace should show all the menu items:
    Window>Workspace>Essentials.
    If you want a different layout or to add panels to the workspace, rearrange/add
    to the workspace (panels) and then save a new workspace under a different name.
    Window>Workspace>Save Workspace.
    MTSTUNER

  • How to hide/remove a menu item in Acrobat X

    Hi,
    I have a plugin created in acrobat sdk 9, running on acrobat x. I want to hide/remove the "Manage Trusted Identities" menu item, found under "Sign & certify (panel) > more sign & certify menu."
    How can i achieve this using javascript?
    thanks in advance,

    Well, I dont want users to be able to access/modify the trusted identities, so i decided to remove/hide the:
    Acrobat X > "Sign & Certify (panel)" > More sign & certify (i think its a menu) > Manage trusted identities (menu item).
    And can i hide/remove above mentioned item in any way other than javascript, like plugin code?
    Is it in any way possible to prevent user from accessing/modifying the acrobat trusted indentities?
    Thanks.

  • How to hide/show dashboards for user/groups

    Hi,
    Please help on how to hide/show dashboard menu/sub menu to users/groups based on their profile settings.
    thanks in advance.
    regards,
    kumar.

    Hi Jinu,
    1) Do some or all of those subreports span multiple pages?
    2) Do each of the Subreports start on a new page?
    If yes, for both, then here's what you need to do:
    1) Create a formula (@True) with this code:
    shared booleanvar SetStatus:= True
    2) Create another formula (@False) with this code:
    shared booleanvar SetStatus:= False
    Drag and drop the @True formula on the details sections for which you want the Page Footer to be suppressed.
    Similarly, drop the @False formula on the details sections for which you want the Page Footer to show up.
    Then, go to the Section Expert > Select Page Footer c > Click the formula button beside Suppress and use this code:
    shared booleanvar SetStatus;
    -Abhilash

  • Rid of "Show All Menu Items" option

    How to get rid of "Show All Menu Items" option from Application menu and keep always open all menu items?

    You should be able to reset Your menus under Edit > Menus by choosing Set: Basic.

  • How to position your script menu item

    Hello,
    How do you position your menu item in the right place. 
    I want to create a new type of document.
    How do I get my menu item under the New sub menu.
    Thanks.
    P.

    The MenuItem add function shows you how:
    MenuItem add (associatedMenuAction: MenuAction[, at: LocationOptions=LocationOptions.AT_END][, reference: MenuElement][, withProperties: Object])
    so all it takes is telling it to add yours LocationOptions.AFTER the New menu item.

  • Show All Menu Items - On all the time - PSCS4

    I must be missing something because I'm sure Adobe would make a way to keep this feature on all the time. But I've been through the preferences and can't find it. Maybe someone can help me.
    How can I make Photoshop CS4 Show All Menu Items - All the time?
    It slows me down and frustrates me having to keep clicking on this each time I need the full menu, which is pretty much all the time.

    > Workspaces contain more than just the menus to display. If you just want to control just the menu items, go to Window> Workspace> Keyboard Shortcuts and Menus... Here you can choose 'Photoshop Defaults' from the Set: pull down on the Menus tab.
    > 'Essentials' is used Suite wide and may make more sense in some of the other products. Unfortunately, Ps was burdened with 'Essentials' and 'Basic' (effectively antonyms) in the process.
    Thank you Steve.

  • Show all Menu Items

    How can the default drop down menus be changed to show all menu items, all the time?
    t h a n k s

    Edit>menus. Choose the default set and don't allow menu customization when you save workspaces.
    Bob

  • [murrine] murreza theme not showing firefox menu items

    so i tried out murrine today and i like it, but the theme that suits me best (murreza) doesn't seem to show the menu items in firefox. they are clickable though, so they're only hidden somehow by the theme.
    does anyone know why this happens, or how to fix it?
    Last edited by litemotiv (2010-01-05 18:55:24)

    thanks for your suggestion anonymous_user, i'd rather not change the firefox config though since this seems to be a gtk(rc) problem. other dark murrine themes like NOX work alright..

  • Javascript help - Hide/Show a page item

    Environment:
    APEX 3.1.00.09 running on AIX 5.3
    Sample application on apex.oracle.com:
    Workspace: GALWAY
    UserID: gwicke
    Password: gwicke
    To see where my issues are:
    1- Start on page 3
    2- In the Agency drop down select 'J & B Marketing'
    3- In the Contract drop down select the only contract that appears
    4- Click on 'Edit Existing Contract'
    5- Note the page item 'LY Closings' has the value 261
    6- Click on the link (really a tab in my theme) at the top labeled 'Cost Detail'
    7- The 'Estimate Justification' is the page item to be displayed/hidden as noted below.
    8- The 'Homes Per Year' under the 'YEAR1' column is the user input page item
    9- The P2_BUILDER_CLOSINGS (value 261 noted above) is the page item to be used in the comparison
    I need to do a couple of things with a potentially hidden page item:
    1- Every time the page loads I need to check to see if the page item (P8_ESTIMATE_JUSTIFICATION) is not null and if it is indeed not null, make it displayed.
    2- When the user enters a value in another page item (P8_HOMES_PER_YEAR1), call a function to see if that value is more than 120% of another page item (P2_BUILDER_CLOSINGS) and if so make the above page item displayed (P8_ESTIMATE_JUSTIFICATION).
    I have the javascript function created (showHideEstimateJustification) and in the HTML Header of the page. The function is being called currently with an onChange check on the page item entered by the user as noted above (P8_HOMES_PER_YEAR1).
    Issues:
    1- I need to force a SUBMIT after the user enters the value for P8_HOMES_PER_YEAR1 so it is available in session state and hence to the javascript function (other ideas welcome!)
    2- I am currently using the x.style.display = 'inline' versus 'none' to hide/show the page item, where x is derived from var x = document.getElementById(P8_ESTIMATE_JUSTIFICATION) Is there a better way????
    Any help is greatly appreciated.
    -gary (a.k.a. Javascript newbie)

    Hi,
    Only your messages use the session state. The code would use the entered value, but you would need to change:
    var homes = parseInt(document.getElementById('P8_HOMES_PER_YEAR1'));to
    var homes = parseInt(document.getElementById('P8_HOMES_PER_YEAR1').value);so that "homes" becomes the numeric version of the value of the item
    Normally, for the label, you would just enter an ID="xxx" into the HTML Table Cell Attributes for the label which you can then use in your javascript. For some reason this doesn't seem to want to work in this page.
    What you could do is find all the labels and then check which is the right one before showing/hiding it. Something along the lines of:
    var xx = document.getElementsByTagName("LABEL");
    var zz;
    var label;
    for (zz = 0; zz < xx.length; zz++)
    if (xx[zz].htmlFor == 'P8_ESTIMATE_JUSTIFICTION")
      label = xx[zz];
    xx[zz].style.display = 'none';
    {code}
    Andy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to Hide/show the columns data while doing Drill down or drill up

    Hi ,
    How to Hide/show the columns data while doing Drill down or drill up in webi report .
    Does it possible BO 3.1 version ?
    Please suggest me on this.
    Thanks & Regards
    Venkat

    While that is not there yet, you can make use of the show when empty yes/no in combination with alerters.
    So I have an alerter applied to every cell of the table.
    When a condition is true (say I drilled down) I just put = "" in every cell, emptying the table,
    because its now empty and doesn't need to show, it wont.
    For the detail table I use the opposite, so when you drilled down it becomes visible...
    Hope this helps all that do not have 40 yet
    Good luck,
    Marianne

  • OS 10.10 how to hide/show a folder with a password using terminal

    In Yosemite 10.10.2 Terminal Can you please tell me how to hide/show with a password then show again on already existing folder created on a system drive and also an external drive. Please provide the path text to folder name "wbfiles". Thank you Winwoodb

    You can drag it from one place on a drive to another.  If you are moving it from one drive to another then it copies it.  If you are moving it on the same drive and are getting that message then not being able to move the folder is the least of your problems.  Free up space immediately because your computer is about to crash and probably lose files.  Then you'll have lots of space.

  • How can i show the first item in the list as selected item

    Aslam o Alikum (Hi)
    Dear All
    How can i show the first item in the list as selected item when user click on the list. Right now when user click the list the list shows the last item in the list as selected or highlighted. Furthermore if the list item have large no of value and a scroll bar along with it then the list scroll to last item when user click it with mouse. I want that when user click the list item with mouse list should show the first item as highlighted.
    Take Care
    Allah Hafiz

    Hi!
    You can set list "initial value" using When-Create-Record trigger.
    I.g.
    :<Block_name>.<list_item_name> := Get_List_Element_Value('<Block_name>.<list_item_name>', 1);

  • How do I show what menu title is active, e.g. current page, in spry navigation?

    How do I show what menu title is active, e.g. current page, in spry navigation?
    See website http://dorsay-easton-indian-law.com/index.html
    I want to have Home menu title have a different color when on index.html and so on. I keep using the term "active" for that, and "hover" for mouseover. Is that correct? And what do I need to do so that my menu displays an indication of which page is the current one?

    The CSS pseudo-classes in order are:
    a = any link
    a:link = an unvisited link (normal state)
    a:visited = a link after it has been visited
    a:hover = on mouseover
    a:active = on click
    a:focus = reached with tab key
    See persistent page indicator on menus:
    http://alt-web.com/Articles/Persistent-Page-Indicator.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Show All Menu Items  -designed by idiots for idiots?

    [rant]
    Which idiot or idiots thought of that in CS4?
    Same annoyance in my old XP office but at least you could set it to always show full menus. I had to move to CS4 after CS3 didn't like Win7 (no problem with that as it's beta) but I was shocked to find my opened images now seem to go left to right rather than right to left. Not sure of the technical description but the close 'x' has moved. And WTF is a 'floating document window' and why has it completely changed my user experience with Photoshop? It's horrible and totally different to CS3.
    "Show All Menu Items" is the worst thing of all. It's not done by the same numpties who did this forum is it? I notice tight/click paste doesn't work here either. I have to CTRL/V. And where's 'preview message'?
    I think the designers have run out of ideas and have to find something to do or are they all the people Microsoft dumped after the Vista Wow?
    Other than those complaints I still love Photoshop but -please- get rid of the "Show All Menu Items". Just show me the bloody options that have always been there.
    [/rant]

    Big thank you to Zeno Bokor -that solved it in 1 second
    I think I've had PS for almost 7 years and it's a wonderful program. I don't mind technical changes or improvements but they really need to test things a bit more. Messing about with something as simple as a menu (which is after all just a menu) is the height of stupidity. They should learn from Windows 7. A fantastic OS compared to the horrible Vista. Why did they get it right this time? They listened to their customers. Windows 7 opens CS4 (and CS3 -it does work just a bit of hassle) like a Notepad file. It's very quick, has never crashed and works very very well. I have noticed some other changes (apart from the annoyances) but I'm not a particulaly heavy user and everything else I went for in the GUI was there 9or was easily found).
    Adobe need to concentrate on getting the program to work and work well and stop messing around with the interface. And why is there no real working official fix for CS3 and CS4 with Windows7? W7 is not a beta like some strange little fan ap for Linux -it is your next paymaster. Yes, technically, it may be in beta but I've been using it for months (it's still free to use and download until March 2010) and it's a very very popular application. Many people who use W7 also use Photoshop. Instead of Adobe's development team thinking of ways to annoy paying customers maybe they should fix CS3/4 so it works fully in W7? You think that would be a good idea?
    Anyway, I'm glad Show All Menu Items™ is fixed but I still have multiple images being opened/loaded to the left instead of the right. So when I go to close or edit I keep going to the wrong side (maybe I installed the Arabic version? ). This sort of thing is not easy to Google or search for a fix because I and I assume 1000s of others have no idea why it would have changed in the first place.
    Photoshop is a great application but cut the crap ideas and fancy menus. And, get your finger out and fix CS3/4 fully for W7.
    Thanks again

Maybe you are looking for

  • Itouch keeps repeating same song - will not advance to next song

    Hi, My itouch, after working fine for over one year, now will not advance to the next song automatically. It keeps repeating the next song.

  • IPhone using Mac Mini's internet connection sharing, stops loading webpages

    Bought an iPhone 1 hour ago. I'm sharing my internet connection to my iBook and MacBook from my Mac Mini. Works fine. Can't connect using the iPhone. It will detect the network, it will show full network reception, but it will only load webpages for

  • DHCP Failover feature in Windows 2012

    I am planning to configure DHCP on windows 2012 failover (Load balanced)mode.Just want to confirm two things: 1.How will the DCHP address be assigned to clients incase the DHCP Servers loose communication between them. 2.Regarding IP helpers that i n

  • Editing Task Attachments Tab

    Hello everyone, I was wondering if it is possible to modify the layout of the Attachments tab (not the one on the PDF forms, but that attachments attached to a task).  Specifically, I am looking to remove the notes capibility and the permissions opti

  • [SOLVED] Apparently, I don't understand mount

    Hey there! I'm having some problems with automounting and other things, so I started working on fixing that, but first I at least want to get a few things sorted out. For example, when I want to mount a CD-ROM, what I currently do is this: 1) start t