How to build a button on click of which opens a list below it

Hi,
I have a requirement wherein onclick of button I want to open/close list/popup (which is displayed below button, just like in select list) and can select any item from list to do some action. 
It is required urgent. Can anyone guide me please?
Thanks!

This is the wrong place for urgent requests.
Just like select list? Why not select list?
What version are you? If >= 4.x, you can hide a region on entry, then show/refresh region on click of button using dynamic action.

Similar Messages

  • How to change the button's clicked color

    Dear all,
    How to change the button's clicked color
    I want it to be white in color as my button's background color is white
    Thanks

    How to change the button's clicked colorvia the UIManager

  • [SOLVED] ok, so ever since I downloaded the newer version of Firefox my tabs icon (+) on the top is gone. I know I can hit cntrl T, but I really like just clicking the + which opens a new tab. How do I get that back??

    ok, so ever since I downloaded the newer version of Firefox my tabs icon (+) on the top is gone. I know I can hit cntrl T, but I really like just clicking the + which opens a new tab. How do I get that back?? I've looked around the HELP section and can only find info about what tabs are etc... Even in all the picutres about the feature it shows the + icon at the top of the page to open a new one. What do I do??

    NM, got it fixed. Thanks!!!

  • How to find the form name attached to AR Open item list

    How to find the form name attached to AR Open item list
    FBL5N -> Correspondance
    Thanks
    Ganesh

    You can find out in SPRO.
    Go to tcode SPRO
    Financial Accounting (New)
    Financial Accounting Basic Settings (New)
    Correspondence
    Define Form Name for Correspondence Print
    Here you will find the form attached to the program.
    To find the attached program to the Correspondence type.
    Go to tcode SPRO
    Financial Accounting (New)
    Financial Accounting Basic Settings (New)
    Correspondence
    Assign programs for the Correspondence Types
    Regards,
    Naimesh Patel

  • How to determine wich button is clicked?

    ... and so on. If you have the time the whole thing is
    downloadable
    here.. Greetings
    from Sweden. Here's some of the code...

    that is very easy to do that.
    First u assign a separate variable for each button (or) keep
    an array where its length is total no of buttons instead of
    variables.Store 0 as values for all buttons.
    When one button is clicked make the index for that button to
    1 and if another button is clicked make the index for that button
    to 1 and remaining values to 0.
    So,write a function to check the values in array and if 1 is
    there change the color of that button to grey and other buttons to
    black.
    Try this and tell me whether it works or not.

  • I downloaded creative cloud and now i´m trying to download premiere but the button to click it to open is not there

    I downloaded it and now a button that says start trial but it is not there, in fact there is no button at all, so I can click anywhere to open it.

    If it is hidden, follow the steps in this KBase
    http://support.apple.com/kb/HT4928
    If you have it in the Applications folder, trash it before attempting a new download.

  • How to build Information button in WAD, web template

    Hello friends,
    I am working in BI 7.0 WAD
    well i designed a query in Bex and it is linked with portal , so if i run the query it shows the result in Portal
    On portal while executing the query if i filter on some characteristics, then there is a button on Upper left named INFORMATION--- so if i click that it will give me the details, what extra filters i did , what extra restrictions i did.
    I am now using the same query in WAD, in order to design a web template.
    So please suggest how to create that Information tab in Web template.
    I think i have to create a Button, than name it as Information,
    But then selecting a Command, what Selection do i have to make
    Which command selection i have to do and what settings I have to make.
    Please suggest appropriate step by step approach as i am new  and learning.
    Also if you can tell how to use a specific Query in WAD to design a Web template.
    Thanks
    W

    I am new ,so if you can shed light by giving steps i will appreciate it.
    In SPRO, i can see SAP REFERENCE IMG, IMG INFORMATION, PROJECT ANALYSIS, MANAGE WORKLIST   ....
    How shall i go to reporting section.
    All reports are linked to portal so they execute equally on Portal with same setting.
    So how shall i copy that web template/
    If i copy the web template , how shall i remove everything else.
    How shall i use that web template in My WAD.
    How to save that Web template.
    Do i have to do everything in Bi server, as i can use SPRO tcode only there.
    If i create new template in WAD, how can i drag and drop the function as of default template.
    How shall i set the property
    Please suggest

  • How to enable a button on click of an adjoining list box

    Hi,
    I have a requirement that :
    the button "Add to the list" should be enabled only when the user clicks on the list box "product list". This is to ensure that the user is looking at the list before adding a new product.
    I tried that the button is disabled by default and then wrote the following line in the list box
    onChange="document.forms(0).ADD_TO_LIST.disabled=false;"
    But it is not working.
    Please guide me
    Appreciate your help.
    Thanks,
    Gary

    gary1234 wrote:
    Dear Cotton,
    I tried searching for a Java Script forum. Could not find it.Dear Gary,
    I question either your competence or the veracity of this claim. A Google search for JavaScript forum returns 19,000,000+ results.
    Please reply if you can help.
    Thanks for enlightening me that Java script is different than Java.This is the third time now you have been so enlightened.
    I am not sure how is it harming you if I post the Java script question here.Please don't be a wank. It is inappropiate for anyone, including you, to ask off topic questions on this, or any other forum. This forum is NOT for JavaScript questions and that is all there is to it.
    So now go to Google. Type JavaScript Forum into the search box and find yourself a JavaScript forum and ask your JavaScript question there.
    This isn't rocket science and your excuse as to why you haven't done so is at best flimsy but more likely just a lie.

  • How to handle a button double click

    I know how to define and IBAction and link it to a control by (Click-Drag)ing.
    But that does not make me chose what action (event for x-Microsoft) in the control am I linking to.
    By other words, when I click-drag, I dont mention, anywhere that I want this action to be linked to the "Click" event of a button. So what if I want this action method to be called when a button is double clicked for example, or when the mouse moves over it.
    Thanks

    Hi Tony, and welcome to the Dev Forum!
    The good news is Apple provides thorough documentation on tracking, interpreting and handling Cocoa mouse events. The bad news is the info is carved into pieces that are scattered all over the library. The challenge is to identify the docs that contain one or more pieces of the puzzle, and then to fit everything together.
    As to double clicks, there's no NSControl equivalent to the double-click notification that many Windows controls send (e.g. BN_DOUBLECLICKED). Also, as you've seen, when connecting an event to an action method in IB, there's only one event to choose from (Cocoa Touch is different in this regard, btw. You'll have a choice of several events when connecting a UIControl object to an action method in IB, though "double-touch" isn't among them).
    So how do Cocoa programmers detect a double click in, for example, an NSButton? The default action message for this class is generated by a NSLeftMouseUp event. I.e. when the left button is released while the control is tracking the cursor.
    One crude but effective solution is to have the listener (the action method connected to the button) set an ivar and start a one-shot timer on the first message. If a second message is received before the timer method resets the ivar, we have a double click. Otherwise we have two single clicks.
    A more general solution is based on two methods you might easily overlook. Firstly, [setContinuous:|http://developer.apple.com/mac/library/documentation/Cocoa/Refe rence/ApplicationKit/Classes/NSCellClass/Reference/NSCell.html#//appleref/doc/uid/20000074-BBCCCEAA] allows you to configure the associated NSActionCell object to send a stream of messages to the button's target instead of just one. The stream starts with the mouse down event that initiated tracking and ends with the mouse up that ends tracking (also see [trackMouse:inRect:ofView:untilMouseUp:|http://developer.apple.com/mac/library/ documentation/Cocoa/Reference/ApplicationKit/Classes/NSCellClass/Reference/NSCell.html#//appleref/doc/uid/20000074-BBCCJAFJ]).
    The next piece of the puzzle is the [currentEvent|http://developer.apple.com/mac/library/documentation/Cocoa/Refere nce/ApplicationKit/Classes/NSApplicationClass/Reference/Reference.html#//appleref/occ/instm/NSApplication/currentEvent] method of NSApplication. This returns the NSEvent object the started the current event cycle, i.e., the event which caused NSButton to send the current action message.
    Thus the listener has access to the stream of event objects which represents the mouse activity from the start of tracking to the end. Using the position and time stamp data from this stream, the listener can distinguish between clicks and drags (hovering is detected differently; I won't try to cover that topic in this post).
    A couple reference links that might help with the rest of the puzzle:
    [Handling Mouse Events|http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Ev entOverview/HandlingMouseEvents/HandlingMouseEvents.html#//apple_ref/doc/uid/100 00060i-CH6-SW1]
    [Control and Cell Programming Topics for Cocoa|http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/Con trolCell/ControlCell.html#//apple_ref/doc/uid/10000015i]
    Hope that helps!
    \- Ray

  • How to insert a button on a page which changes the field value in a list

    Hi,
    I need to send a workflow email to the manager giving him an option to approve/reject the ongoing process. Now i want to make it such a way that, manager is redirected to some page, where he will see two button, Approve and Reject. On click of any of them,
    the status field in sharepoint list should change accordingly.
    Please suggest how can i implement this. 
    Many thanks.

    Hi
    check this real example
    http://blogs.msdn.com/b/sharepointdesigner/archive/2012/08/16/a-sample-approval-workflow-which-can-be-recalled-by-initiator.aspx
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • How to push a button, run a report, and open output in new windows?

    I have an application where I want to present the user with a form, have them enter their report parameters, and then press a go button. I would then like to display a progress bar. The report will generate both a PDF and HTML output. When the report is complete, I want to display each one of these outputs in their own browser window.
    How do I do this?

    You want to retrieve two responses? Then you'll have to invoke two requests simultaneously. You can make this possible with a Javascript window.open call in the onclick attribute of the commandButton. E.g.
    <h:commandButton
        value="submit"
        action="#{myBean.submit}"
        onclick="window.open('pdfServlet?param1=value1&param2=value2');" />Where the bean action just returns the HTML (JSF) result and the onclick fires a servlet, if neccessary supplied with request parameters so that it knows what PDF it need to generate.

  • How to access a button inside a MovieClip which is the source of a scrollpane?

    Hi Everyone,
    I have created a crollpane in my flash file and the source of the scrollpane is a movieclip which contains a buttons.
    Now I want to add a gotoAndStop function to that button to link to a frame on the main timeline.
    Could anyone tell me what is the right as3 code to access this button?
    Thank you!

    Hi Ned,
    I'm still getting a error message. This is my code:
    MovieClip(spane8.content).AppsOptimizerBtn.addEventListener(MouseEvent.CLICK, gotoApp1);
    function gotoApp1(event:MouseEvent):void
              gotoAndStop(21);
    This is the error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at MyAssests_Scene2_fla::MainTimeline/frame11()
              at flash.display::MovieClip/gotoAndStop()
              at MyAssests_Scene2_fla::MainTimeline/gotoAppStore()
    Frame 11 is where my scrollpane is.
    "gotoAppStore" is a function that I used at frame 1 to link to frame 11.
    Any idea what is wrong?

  • I just updated to Firefox 3.6.12 and now every time I click anything online a new tab opens. How do I return to normal (clicking a link opens it in current page and tab)?

    I'm used to clicking a link on a news story or any searched link on google and having my current page go there. Now my current page stays the same and any link I click opens in a new tab. This is very annoying. I just want my browser to go there.

    Google Toolbar Options, in the Search tab, make sure that '''Enable the Google new tab page''' is check-marked. If that doesn't fix it for you, see this for support information about the Google Toolbar. <br />
    [http://www.google.com/support/toolbar/?hl=en] <br />
    Or visit the Google Toolbar forum. <br />
    [http://www.google.com/support/forum/p/Toolbar?hl=en]
    As far as your UserAgent showing Firefox 3.0.11, see this: <br />
    https://support.mozilla.com/en-US/kb/Websites+or+add-ons+incorrectly+report+incompatible+browser
    You might want to consider getting rid of that '''desktopsmiley''' program that has messed up your UserAgent, it is known as Malware.

  • I just upgraded Firefox, and now it's opening new windows instead of news tabs when I click on links. It's driving me nuts. How do I get pages I click on to open in new tabs instead?

    I'm using Firefox 3.5.14, and had no similar problems with an earlier edition.
    I believe I've already selected the "open in new tab" option. Am I missing something?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • How to build a dll for labview pda, which uses the intel ipp primitives in it

    Hi all,
    For my application, I need to call a c dll from Labview PDA, and in the c function i need to use intel IPP function. When i call my dll, i get an error saying the ippfunction i use, say "ippsCopy_16s missing c or vi file". Can someone tell  me what I might be doing wrong?

    Hi Vani,
    When using a DLL in a PDA there are some special considerations you have to take. Please take a look at the following knowledgebase describing the process.
    Eli S.
    National Instruments
    Applications Engineer

Maybe you are looking for