Iterator hides the DOM af:menu from styleClass change

I have code that iterates through a number of af:menu's. Customer wants to highlight the af:menu whose child has been clicked, because the child goes away after it is clicked. I am unable to do this now with a bean. The bean has an actionListener on the af:menu's child af:commandMenuItem. When the child is clicked, the actionListener goes back up the tree until it finds its parent menu, then sets the menu's styleClass to a CSS class that sets the menu's background-image to something nice - effectively highlighting it. Unfortunately, because the af:menu was created inside an iterator, ALL of the menu's get there styleClass changed!! Bloody Hell. So, I get the real underlying div's id but how do I get the DOM Document in Java, in my bean, to set the style attribute of the div? Do UIComponents or UIXComponentBase have an API to get the Document? help! I need this right away.
Thanks,
The Goose

Sorry, but it's difficult to help you if you didn't provide some information about it.
1. What's your jdev version?
2. Put your code..
Regards,

Similar Messages

  • Help:  How to add a library item to hide the default Window menu

    Hi,
    In this post: Help: How to add a library item to hide the default Window menu, it described how to create an menu that will hide the default window menu.
    I'd like to know if there a way to put this component into library so that others can directly inherit this menu in other FORMS and how to implement it.
    Jimmy

    Hi,
    I found the solution and the post was not properly phrased. There is no need to add menu into library. All we need is to put the compiled menu into Oracle AS and add the menu name the menu module of the given form.
    Thanks.
    Jimmy

  • Can we hide the tables and columns from subject areas in the front end

    Hi,
    Is there any way to hide the tables and columns from the subject area in front end.I need to create a report with some tables which the user does not want to see.So after creating the reprot can I hide those tables and columns in the front end

    Hi,
    Your question is not that clear to me...do you want to hide the entire table/column that dont want to show up in the front end then you could do in Presneation Layer in the RPD by going Permissions in the property of that object.
    But if you want to hide the column in the report that can be visible in the subject Area: go to column properties -> Column fomat...thereis Hide option.
    Can you please elaborate your question...what exactly you are looking for...
    --SK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • HT3819 I have turned two computers on to home sharing. I am now on this computer wanting to put my music on to this itunes and i know i need to find the other computer in the drop down menu from " Home Sharing " but that menu isnt there on the left?

    I have turned two computers on to home sharing. I am now on this computer wanting to put my music on to this itunes and i know i need to find the other computer in the drop down menu from " Home Sharing " but that menu isnt there on the left?

    If you have the horizontal menu bar showing (File, Edit, View,...), select View, then select Show Sidebar. 
    If the menu bar is not showing, dorp down the menu in the very upper left corner and select show menu bar, then follow steps above.
    Hope that helps.  Good luck.

  • Hide the Acrobat Reader Menu Bar

     
    For my Livecycle Designer ES document, I only want the Acrobat Reader end users to use my buttons (SAVE, PRINT, EXIT) rather than the Acrobat Reader Menu Bar to access the same functions. My buttons contain various java scripts that are necessary for form completion. If they bypass these buttons using the Acrobat Reader Menu Bar (example: File, Print), then the form will not capture the data properly.
    Is there a way to hide the Acrobat Reader Menu bar for my specific form through a built in function in Livecycle ES or is there a java script that can be used to hide the Reader Menu Bar?
    Thanks,
    Eric

    Hi Eric,
    I am fairly sure that you cannot access the presence of the Menu Bar. I have tried here but can't get it to work.
    An alternative would be to open the form full screen. When you do this the cursor changes into a click advance (to next page), but you can also turn this off.
    An example is here: https://acrobat.com/#d=JK2I24ZgmsvMr6BtCQNMOg
    I appreciate that the user can elect not to go into full screen or can escape out of it, but it is a rough workaround.
    The following in the docReady event should work:
    app.execMenuItem("FullScreen");
    app.fs.clickAdvances = false;
    Good luck,
    Niall

  • How to hide the main window menu ?

    Hi, Im developing a Java app that has an horizontal menu bar,which has the option to exit the program . So I want to hide, or get rid of the main window menu bar, the one that has the close, minimize and maximize buttons..is it possible ?
    Thanks in advance :)

    from java.awt.Frame api
    A frame may have its native decorations (i.e. Frame and Titlebar)
    turned off with setUndecorated. This can only be done while the
    frame is not displayable.

  • How can I cancel itunes match without the latest version of itunes? I can't get the drop down menu from the store

    I have a mac which doesn't support the new itunes. The instructions I have from apple say that I have to use a pull down store menu from the itunes store and then I should be able to view my account and cancel by turning off the auto renew button next to itune match, The only trouble is I can't see the itune match at all.

    Turning off the auto-renew does not cancel the service. To actually cancel, or turn off the service, you need to contact iTunes Store support. What the instructions are are getting is telling you to do is to cancel the auto-renew. You can accomplish that by, in iTunes:
    1. Pull down the Store menu and select "view account."
    2. Enter your credentials when prompted.
    3. In the middle of the page click the hightlight button:

  • How to hide the command line arguments from solaris process

    Hi All,
    When I execute a JAR application from a java file using the Runtime.getRuntime, the command line arguments (user ID and Password details) which I passed for executing the application displayed on Solaris process (ps -ef).
    Could anybody please help me, how can I hide either the process or the command line arguments from the Solaris process?
    I cannot pass any asterix or any special character in place of password, because the executing application doesn't have any functionality to retreive the password which send as asterix characters.
    Please help me
    SumodeV

    Thanks for all the response.
    I have created a design and implement the functionality which executes the JAR application in Solaris environment without showing any details in the process details.
    I have used the Java Reflection method, which invokes the JAR application. I am sharing the details here for all those who looking for it.
    1, Inside the Customer application [Jar File is running for it], collect the necessary session details [Using System.get property method]
    2, Create an independent Java file, which should be used to invoke the JAR application
    3, Create the ProcessBuilder object and use a command - execute the Java file [a wrapper code] using normal Java command
    4, Pass the necessary session details to the ProcessBuilder using the environment() function.
    5. Collect the environment values in the independent Java file (Which was invoked by ProcessBuilder) and set details for its environment using System.setProperty.
    6, Use reflection technique to invoke the JAR plugin [which you want to run]. You can use the standard Java functionality to read the MANIFEST file of JAR and load the main class using URLClassLoader.
    7, Invoke the main method of the JAR file, which run the JAR application in Solaris window
    This solution will make sure that the process cannot display any session details in the Solaris Environment.
    Note: Use String[] array while create the command. Otherwise the JAR application cannot pop-up.
    Regards
    Sumode

  • How do I hide the Dynamic Page parameters from being displayed in the URL

    Hello,
    I am using a form to call a Dynamic Page and to send parameters to it ,
    is there a way to hide the parameters values from being diplayed in the URL
    when the Dynamic Paged is called .
    Thanks .

    Hi,
    You cannot hide the parameters in the url. The GET method works like that. You can use the POST method to submit the parameters. But in your case the POST method may be not be appropriate.
    Thanks,
    Sharmila

  • Can i hide the top white menu on the screen?

    I made an account on my imac specially for games only. No other distraction now, but there is still the white menu at the top of the screen. Is it possible to hide that one as well? I hide already the drives etc, so there are not visible on my desktop any more.

    Try this: PresentYourApps.
    Many games automatically hide the menu bar or provide a preference option to do so.

  • How to hide the Add-on panel from a script

    Good day
    I've installed an Add-on on my PowerShell ISE.
    I activate the add-on by 
    Import-Module c:\ps1\Modules\VariableExplorer\VariableExplorer.psm1
    im my Profile
    A minor annoyance is that the adds-on panel gets shown. 
    i have to press Alt+Shift+V in order to hide the adds-on panel.
    I'd like the panel remain hidden even when i activate the add-on.Maybe i activate the add-on incorrectly, then pls share a correct way of activating an add-on.
    Or there is a command that i can put in the profile.ps1 in order to hide the adds-on panel.
    Regards
    Kamil

    Perhaps this may help
    https://msdn.microsoft.com/en-us/library/dd878350(v=vs.85).aspx
    M.

  • TS5249 I'm connecting my Bose T1 mixer to GarageBand via a MAC air.  In the drop down menu from smart control, it shows no audio input. Any suggestions?

    I'm connecting my Bose T1 mixer to GarageBand via USB cable.  In the drop down menu under smart control, it does not recognize this input or any input.

    go to system preferences > sounds > select audio input

  • How can I make rectangular speech bubbles that adapt to the text inside them without the "arrow" that points towards where the bubble is coming from getting changed?

    I have to make lots of speech bubbles (150+) that all have texts inside them which differ in length. I want the speech bubbles to look the same in terms of style, but I need different sizes of course for each text. This means that the rectangular part of the speech bubble should adapt in length and width to the text inside it, while the "arrow" pointing towards where the bubble is coming from (e.g. the person who speaks) should stay the same on every bubble. So is there a way or a workaround to make such "adapting" speech bubbles?
    I appreciate any kinds of help
    Thanks in advance!

    Here's another way I found:
    1. Draw a speech bubble. Mine is a rectangle with rounded corners and a triangular pointer added with Pathfinder > Add
    2. Drag out a frame the same size as the speech bubble. Select the speech bubble and Copy; then select the empty frame and choose Edit > Paste Into...
    3. Alt-Drag the frame with the pasted speech bubble to make a copy, then crop one copy to leave only the top of the bubble showing, and crop the other copy to leave only the bottom.
    4. Drag out a text frame and insert a table consisting of 1 column, 3 rows. Set the text frame to Autosize > Height Only.
    5. Set the stroke/fill of the top and bottom rows to none, and style the middle row to match the speech bubble, (in my case a white fill and 2pt stroke; left and right).
    6. Anchor (paste) a copy of the speech bubble top in the top table row, and a copy of the speech bubble bottom in the bottom row.
    Getting the 3 parts to match up with is where you just have to work on it until you get it right. Use the positioning tools in Anchored Object options and the column width setting in Cell options to line everything up.
    Enter your text in the middle row. (Hey, look at that...a valid application of Comic Sans!) With the Cell Height set to an "At Least" setting, the cell will expand to fit whatever text you enter, pushing the the bottom row down, with the text frame auto-sizing to keep everything in play...

  • How To Hide the Record after Update from ADF Front End

    Hi Every One,
    I have done the Scenario of Database Table rows displayed in ADF front end. It is editing and updating also. My Query is after update the record, how to hide that record from adf front end.
    Could any one please help me.
    Thanks,
    Narasimhulu.S

    hi you can create transient field in view object indicate to visibility of row (boolean ) and create view criteria that show only rows that are able to be visible according to transient attribute and at the update process set the attribute to true inside entityImpl class

  • How to hide the password's list from the Tools - Options - Passwords

    Hi I am an IT in a experimental school and we work 99% online with the teacher & students in the class.
    My boss need to '''hide''' from the teachers the option to see the stored password for thousands subscription sites that my boss have pay.
    It their any way that we can hide / remove the option to see the stored passwords.
    Thank you for you help in advanced.

    See also [[Protecting stored passwords using a master password]]
    Do you need those passwords to be entered automatically on websites or does only your boss need to have access to them and use the passwords?
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Next Generation Java Plug-in 1.6.0_15 for Mozilla browsers
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)

Maybe you are looking for

  • What is the best "5" 1 Port USB 2.0 PCI Controller Card for my G5 10.5.8

    Greetings all. My old school G5 needs additional 2.0 USB ports. I've looked on line at "Newegg" etc., but the descriptions are vague. Please advise and thank you in advance. Ma6hine

  • 2 pricing conditions in PP

    Hi everyone, This is a RETURNS scenario. We create a Credit Memo Request (Sales Order type: CR) when the customer calls in for a Return and we make another Sales Order (Sales Order Type: RE) when the goods actually come in. A credit memo is created a

  • Steps to setting up email for Lion Server Alerts

    Can anyone describe the steps to configuring email alerts on Lion Server? I see a place to enter the email address in the Alerts window but no messages ever get emailed. Is there another setting I need to turn on to get the server to send email?

  • Slow to open PDF files in Adobe Reader

    Hello, after upgrading to Mac OS 8.5.3 and 10.9 Maverick'm slow to open PDF files from a Windows 2003 Server share. In the terminal I get the following errors Print Screen below. PING to the IP of the share is less than 1 ms. I'm working with adobe r

  • Any easy way to tell if Optional VI connection is connected?

    If a connection to a VI is Optional, is than any easy way to tell if an connection is made by the calling function or if it is disconnected? Thanks.