Open LOV popup with a button click or image link click

hi , a try the solution:
11g: How to populate LOV from button click
for open pòpup of lov , but don't works :
first the others components block the submit of button
i put the inmediate propertie but lov don't still open
any ideas???

Does this one help?
Invoke lov popup window via keypress

Similar Messages

  • Open a Popup with commnadButtom

    Hello,
    can I open a Popup with a commnadButton? Und Load in the Popup a PDF`?
    I can open a PDF but only in self window :-(
    Thanks for help
       public String doActionShowPreview() {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            HttpServletResponse response = (HttpServletResponse)facesContext.getExternalContext().getResponse();         
            response.setContentType("application/pdf");
            response.setHeader ("Content-disposition", "inline");
            response.setHeader("Expires:"," Wednesday, 27-Dec-95 05:29:10 GMT");
            response.setHeader("Pragma:"," no-cache");
            Documents previewDoc = getEditDocument();
            List tagListForCreator = new ArrayList();
            Set tagList = previewDoc.getText();
            Iterator iter = tagList.iterator();
            while(iter.hasNext()) {
                DocumentText docText = (DocumentText)iter.next();
                XMLParserTagInfo info = new XMLParserTagInfo(docText.getTag(),docText.getText());
                tagListForCreator.add(info);
            Collections.sort(tagListForCreator);
           XMLInDesignCreator xmlCreator = new XMLInDesignCreator();
           xmlCreator.createXML(tagListForCreator,previewDoc.getDocName(),previewDoc.getDocName());
        File file = new File("C:\\tm\\preview\\"+ previewDoc.getDocName()+".pdf");
       //convert the file content into a byte array
       FileInputStream fileInuptStream = null;
       try {
           fileInuptStream = new FileInputStream(file);
       } catch (FileNotFoundException ex1) {
       BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInuptStream);
       ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
       int start = 0;
       int length = 1024;
       int offset = -1;
       byte[] buffer = new byte[length];
       try {
           while ((offset = bufferedInputStream.read(buffer, start, length)) != -1) {
               byteArrayOutputStream.write(buffer, start, offset);
       } catch (IOException ex2) {
           ex2.printStackTrace();
        try {
            bufferedInputStream.close();
            byteArrayOutputStream.flush();
            buffer = byteArrayOutputStream.toByteArray();
            byteArrayOutputStream.close();
        } catch (IOException ex3) {
            ex3.printStackTrace();
        response.setContentType("application/pdf");
        response.setHeader ("Content-disposition", "inline");
        response.setHeader("Expires:"," Wednesday, 27-Dec-95 05:29:10 GMT");
        response.setHeader("Pragma:"," no-cache");
        try {
            response.getOutputStream().write(buffer);
            response.getOutputStream().flush();
        } catch (IOException ex4) {
            ex4.printStackTrace();
        return "";
        }

    Do the following
    1) window.open('somePath/YOUR_JSF_PAGE .jsf') in your javascript code.
    2) Invoke doActionShowPreview() method in the constructor of your BackingBean.
    Hope this helps.
    Karthik

  • The way to open 3D pdf with specific model selection from url link

    I guess this feature is not supported, but let me ask one thing.
    I am looking for the way to open 3D pdf with specific model selection from url link.
    For example, if the following link is opened, is it possoble to open 3d.pdf with automatic selection of "abc" model in the model tree? 
    http://example.org/3d.pdf#model=abc
    If it can be done by javascript, it's really helpful.

    Impossible. There are only very limited command-line options for the Acrobat Family and you cannot change them.

  • How to replace LOV popup with a search screen that opens within same window

    Hi,
    We have a requirement to get rid of LOV popups from our custom OA pages. They need to be replaced by search pages that open within the same window.
    For example, we are creating an employee assignment to a department. We first find the employee (currently using the LOV), then the department (currently using another LOV) and then save the new assignmnet record.
    The two options we have are:
    1. search page fully replaces the current page, and when the user has selected a record, it returns them back to the first page, setting some fields, eg. employee id, employee name, employee address fields.
    2. search page opens in a region of the same page (PPR?) and then disappears once the user has seleted a record.
    I am not sure how to do this, and really could do with some pointers, i.e. the best way to achieve this.
    Thanks in advance
    Mark

    Both of your options are valid with some pros and cons.
    option 1: It gives you a nice interface but then you will have a pass a large number of data back to 1st page.
    options 2: You can use the Rendered property of a serach region at runtime and achieve your goal. Since it will be a single page, result set to base items mapping will be easier. Though this kind of UI will look bad if your search region is big.
    So it all depends on which option is easier to implement for you.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Opening a popup from custom button in a Form

    I have a requirement to open a popup from a custom button of a portal form and once the value is selected from the popup the control should return to the main form with the value selected and set it to some display only field in that same form. It can be done thru' popup of a field directly but how can I do this thru'a button ?.
    Help would be appreciated.
    Thanks
    -Krishnamurthy

    Works for me if I middle-click a bookmark on the Bookmarks Toolbar and browser.tabs.loadBookmarksInBackground is set to true.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Popup with four buttons

    Hi, I'm a newbie in ABAP and I want to create a popup with only four buttons (with my options), like a questionnaire, but without cancel button.
    I see the function C102_POPUP_TO_CONFIRM, I want something similar but without cancel button.
    can someone help me?
    Thanks!!

    Only a little doubt more
    Why SPACE string don't work in this situation:
      CALL FUNCTION 'C102_POPUP_TO_CONFIRM'
        EXPORTING
         titlebar                    = 'title'
          text_question               = 'question'
         text_button_1               = 'text1'
      ICON_BUTTON_1               = ' '
      I_ICON1_INFO                = ' '
         text_button_2               = 'text2'
      ICON_BUTTON_2               = ' '
      I_ICON2_INFO                = ' '
         text_button_3               = 'text3'
      ICON_BUTTON_3               = ' '
      I_ICON3_INFO                = ' '
         text_button_4               = 'text4'
      ICON_BUTTON_4               = ' '
      I_ICON4_INFO                = ' '
      DEFAULT_BUTTON              = '1'
       DISPLAY_CANCEL_BUTTON       = SPACE
      START_COLUMN                = 25
      START_ROW                   = 6
    IMPORTING
         answer                      = answer1.
    Thanks for all!!

  • How to open the popup with in Tab navigator  working area.

    Hi,
              I using the customized  panel to open it as popup by using  popup manager in the Tab navigator . The popup should be able to  move with in the tab navigator's  content area. Not outside of the tab navigator's  content area. How to do this? .What is the difference between opening the popup by using popup  manager and add children(); which one is best?
    Regards,
    Thiru

    It depends on your purpose. A popup displays information to the user, and it might be modal if the user should repsond to the popup before continuing, but why constrain it's movement to the space occupied by the TabNavigator.
    You could, in theory, check the x and y properties of the popup position, and then compare those with the x and y of the TabNavigator view area, though you might have to do some conversion between global and local coordinates.
    You might want to consider your design. Is a popup necessary? Perhaps not. If so, maybe do not consider constraining its movement as you have indicated.
    If this post answers your question or helps, please mark it as such.

  • How to open PDF file with the view I wish without many clicks

    I am getting many many scanned files daily and I'd like to able to skim thru each file as fast as possible.
    Since the way each file scanned is consistent, when I open it, I am clicking a button to rotate it counterclock, then click zoom-in a few times to be able to read the top portion to see if the file is of my interest.
    Can we customize the way the files are opened?  I wish that once I open it, it will be rotated (so that I don't have to tilt head to read it), and zoom in big enough for me to read it.
    I did try (I am new to this) "accessabitly settup assistant", but couldn't achieve my desired effect.
    Any suggestions?
    thanks.
    JQ

    Thank you for the suggestions. Appreciated it.
    Actually when I asked whether they could scan it differently, I was told "no" for that type of scanner they have, and they have been reading it the same way as I just start to do, for years.
    Maybe someone knows about what scanners have the feature to do these tricks?
    I tried the preference setting. It's still less manageable. However, I manage to be able to click 3 buttons to get to the top portion to be readable.
    First, I rotate it counterclock (which mess up the view zoom in setting preference).
    Then I click to "show one page" button;
    Then I clcik to make the document to fill the width. (at this point, the zoom in is about 79%).

  • I need to hide a popup with custom buttons

    When they click the button I want t he popup to cancel. THe button invokes a background process. How do I achieve this?
    The button has the download listener on it.

    Hi,
    You can bind the popup to the managed bean who invokes the process:
    RichPopup popup;
    public RichPopup getPopup() {
      return popup;
    public void setPopup(RichPopup popup) {
      this.popup = popup;
    ...And then put this code in the action listener:
    public void invokeProcess(ActionEvent actionEvent) {
      popup.hide();
    }Hope this helps.
    AP

  • Open another workbook with a button in Bex Analyzer

    Hi,
    is it possible to create a button in a workbook in Bex Analyzer which opens another (specific) workbook in a new window?
    Or is there another easy way to open a specific workbook in Bex Analyzer.
    Best regards.

    Hi,
    You can configure excel to open each document (e.g. workbook) in a own window, within options (display ->windows on taskbar).
    You can also have 2 excel windows logged on to different BW systems (e.g. QA and PRD) bij opening not Bex but Excel for the second session and opening the BW Addin mannuelly via the Extra's -> addin menu...
    How to open a specific workbook is beyond my current knowledge..
    Regards, Patrick Rieken
    Message was edited by:
            Patrick Rieken - BI-Formance B.V.

  • My firefox won't open new tabs with the button or when I press CTRL+t, what is the problem?

    I can't open any new tabs what so ever. I tried uninstalling and re-installing, and there was no change.

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.

  • How to open a excel with VBA button using I_OI_DOCUMENT_PROXY

    same this image:
    http://www.ImageThe.net/show-image.php?id=d367faef6ed7333acc2edd0290481fc8
    how to use OPEN_ACTIVEX_DOCUMENT?
      CALL METHOD DOCUMENT->OPEN_ACTIVEX_DOCUMENT
        EXPORTING
          DOCUMENT_URL = ITEM_URL
        IMPORTING
          ERROR        = ERRORS.

    Look at the below excel, it has macro, like sum. It will help you..
    <%@page language="abap"%>
    <html>
      <head>
      </head>
      <body>
        <object id="msx" style="width:100%;height:300px;margin-top:50px"
                classid="clsid:0002E510-0000-0000-C000-000000000046">
          <param name="DisplayTitleBar" value="false"/>
                <param name="HTMLData"  value=""/>
        </object>
        <script type="text/javascript">
          layout_sheet = document.all("msx");
          layout_sheet.Cells(1,5) = 'Test mit einzelner Zelle';
          msx.range('F1').value = 'F1';
          range  = layout_sheet.Range(layout_sheet.Cells(1,1),layout_sheet.Cells(1,4));
          record = "Jahr;Januar;Februar;März";
          range.ParseText(record, ';');
          range  = layout_sheet.Range(layout_sheet.Cells(2,1),layout_sheet.Cells(2,4));
          range.value = [ 2006, '15', '17', '19' ];
          msx.range('a3:d3').value = [ 2007, 33, 15, 13 ];
          msx.range('a4:d4').value = [ 'Summen', '=SUM(B2:B3)', '=SUM(C2:C3)', '=SUM(D2:D3)' ];
          msx.range('b2').NumberFormat = '####.00';
          msx.range('b2').Interior.Color = 'red';
          msx.range('c1:d1').Font.Name = 'Courier';
          msx.range('c1:d1').Font.Color = 'blue';
          msx.range('c1:d1').Font.Size = 12;
          msx.range('c1:d1').Font.Bold = 1;
          layout_sheet.Cells.AutoFitColumns();
        </script>
      </body>
    </html>
    *Reward each useful answer
    Raja T

  • Issue with nav buttons in an image gallery

    Hello,
    I'm very new to flash and am using CS4/AS3. I have three image galleries of three images each. The images load dynamically from files on my computer. I've set it up so that when you click on a tab, you see a different set of three images.
    The images load properly and it works to click forward to view them (that is, clicking on the image itself or the forward nav arrow). The issue I'm having is with the backward nav arrow. I keep geting an error message "Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found" when I click it.
    The backward nav arrow works on the first gallery (egypt gallery) if I click that one first. But it doesn't work on the other two, and if I click back to the Egypt gallery after having been in the other two galleries, the back navigation no longer works in their either.
    Basically, I want the user to be able to click on a tab to load the images, and then be able to click back and forth between the images. If they reach the last image in a gallery, I just want it to stop advancing and stay put on the final image, but for the user to be able to click backwards through them if desired. My code is pasted below (I'm sure it's more complicated than it needs to be... just a result of me being a complete novice!)
    Any help or suggestions would be very much appreciated. Thanks so much.
    stop();
    //egypt gallery//
    var myloader:Loader = new Loader();
    var myrequest:URLRequest = new URLRequest("images1/egypt1.jpg")
    var counter:Number=1
    var total:int=3;
    egypt_mc.addEventListener(MouseEvent.CLICK, cover);
    function cover (e:MouseEvent):void{
    object1_mc.x=414.15;
    object1_mc.y=101.35;
    object2_mc.x=520;
    object2_mc.y=60;
    object3_mc.x=630;
    object3_mc.y=60;
    left_mc.x=15;
    left_mc.y=340;
    right_mc.x=680;
    right_mc.y=340;
    stage.addChild(myloader);
    myloader.x = 28;
    myloader.y = 175;
    myloader.load(myrequest);
    myloader2.unload();
    myloader3.unload();
    myloader.addEventListener(MouseEvent.CLICK, shownextpicture)
    function shownextpicture(e:MouseEvent):void{
    counter = counter + 1;
    if(counter<=total){
    myrequest.url="images1/egypt"+counter+".jpg"
    myloader.load(myrequest)
    right_mc.addEventListener(MouseEvent.CLICK, forward)
    function forward(e:MouseEvent):void{
    counter = counter + 1;
    if(counter<=total){
    myrequest.url="images1/egypt"+counter+".jpg"
    myloader.load(myrequest)
    left_mc.addEventListener(MouseEvent.CLICK, back)
    function back(e:MouseEvent):void{
    counter = counter - 1;
    if(counter>0){
    myrequest.url="images1/egypt"+counter+".jpg"
    myloader.load(myrequest)
    //wikileaks gallery//
    var myloader2:Loader = new Loader();
    var myrequest2:URLRequest = new URLRequest("images2/wikileaks4.jpg")
    var counter2:Number=4
    var total2:int=6;
    wiki_mc.addEventListener(MouseEvent.CLICK, cover2);
    function cover2 (e:MouseEvent):void{
    object1_mc.x=410;
    object1_mc.y=60;
    object2_mc.x=521.35;
    object2_mc.y=102;
    object3_mc.x=630;
    object3_mc.y=60;
    left2_mc.x=15;
    left2_mc.y=340;
    right2_mc.x=680;
    right2_mc.y=340;
    stage.addChild(myloader2);
    myloader2.x = 28;
    myloader2.y = 175;
    myloader2.load(myrequest2);
    myloader.unload();
    myloader2.unload();
    myloader2.addEventListener(MouseEvent.CLICK, shownextpicture2)
    function shownextpicture2(e:MouseEvent):void{
    counter2 = counter2 + 1;
    if(counter2<=total2){
    myrequest2.url="images2/wikileaks"+counter2+".jpg"
    myloader2.load(myrequest2)
    right2_mc.addEventListener(MouseEvent.CLICK, forward2)
    function forward2(e:MouseEvent):void{
    counter2 = counter2 + 1;
    if(counter2<=total2){
    myrequest2.url="images2/wikileaks"+counter2+".jpg"
    myloader2.load(myrequest2)
    left2_mc.addEventListener(MouseEvent.CLICK, back2)
    function back2(e:MouseEvent):void{
    counter2 = counter2 - 1;
    if(counter2>4){
    myrequest.url="images2/wikileaks"+counter2+".jpg"
    myloader2.load(myrequest2)
    //scientology gallery//
    var myloader3:Loader = new Loader();
    var myrequest3:URLRequest = new URLRequest("images3/scientology7.jpg")
    var counter3:Number=7
    var total3:int=9;
    scien_mc.addEventListener(MouseEvent.CLICK, cover3);
    function cover3 (e:MouseEvent):void{
    object1_mc.x=410;
    object1_mc.y=60;
    object2_mc.x=520;
    object2_mc.y=60;
    object3_mc.x=629.95;
    object3_mc.y=100.8;
    left3_mc.x=15;
    left3_mc.y=340;
    right3_mc.x=680;
    right3_mc.y=340;
    stage.addChild(myloader3);
    myloader3.x = 28;
    myloader3.y = 175;
    myloader3.load(myrequest3);
    myloader.unload();
    myloader2.unload();
    myloader3.addEventListener(MouseEvent.CLICK, shownextpicture3)
    function shownextpicture3(e:MouseEvent):void{
    counter3 = counter3 + 1;
    if(counter3<=total3){
    myrequest3.url="images3/scientology"+counter3+".jpg"
    myloader3.load(myrequest3)
    right3_mc.addEventListener(MouseEvent.CLICK, forward3)
    function forward3(e:MouseEvent):void{
    counter3 = counter3 + 1;
    if(counter3<=total3){
    myrequest3.url="images3/scientology"+counter3+".jpg"
    myloader3.load(myrequest3)
    left_mc.addEventListener(MouseEvent.CLICK, back3)
    function back3(e:MouseEvent):void{
    counter = counter - 1;
    if(counter>0){
    myrequest.url="images3/scientology"+counter+".jpg"
    myloader.load(myrequest)

    You want to have the trace triggered when the problem occurs, so if the problem occurs when you use your back button, then you want to tie it in to that somehow.  I don't know why you are trying to trace all that you show.  The main thing you want to find out is why it is not finding the file, which will be defined by whatever value it is trying to use as a url.  Try to focus on the data you need to see and not just anything that comes to mind.

  • Factory Resetting 1130AG's with Mode button gives 'invalid image'

    Hello,
    I'm working on a project for a non-profit and I've run into the following issue when trying to factory reset an 1131AG in LWAP attempting to reflash to Autonomous mode. I am using a Linksys2000P for POE in L2 mode to power the AP and a Mac running tftp on 10.0.0.250 :
    ethernet link up, 100 mbps, full-duplex
    Ethernet port 0 initialized: link is up
    button is pressed, wait for button to be released...
    button pressed for 37 seconds
    process_config_recovery: set IP address and config to default 10.0.0.1
    process_config_recovery: image recovery
    image_recovery: Download default IOS tar image tftp://255.255.255.255/c1130-k9w7
    -tar.default
    examining image...
    extracting info (277 bytes)
    Premature end of tar file
    ERROR: Image is not a valid IOS image archive.Loading "flash:/c1130-rcvk9w8-mx/c
    1130-rcvk9w8-mx"...#############################################################
    Matts-MacBook-Pro:/ mlar$ ls -lart /private/tftpboot
    total 31376
    -rwxrwxrwx@ 1 mlar  staff  5140480 Jul 10  2012 c1130-k9w7-tar.default
    -rwxrwxrwx@ 1 mlar  staff  5140480 Jul 10  2012 c1130-k9w7-tar.123-8.JEA3-2.tar
    -rwxrwxrwx@ 1 mlar  staff  5775360 Sep 19  2012 c1130-k9w7-tar.124-25d.JA2.tar
    drwxr-xr-x@ 6 root  wheel      204 Oct 18 12:47 ..
    -rw-r--r--@ 1 mlar  wheel     6148 Mar 14 17:21 .DS_Store
    drwxrwxrwx  7 root  wheel      238 Mar 14 17:21 .
    drwxr-xr-x  6 mlar  wheel      204 Mar 14 17:21 c1130-k9w7-tar.123-8.JEA3-2

    Malar, 
    I will agree with Scott.  The output you've posted is showing the IOS is corrupt. 
    Check with you administrator or just reset the password.
    Unfortunately, Ravi is from Sales so he really doesn't know what he's talking about.

  • How to make ads/banners published for an Adserver (only an HTML file with all js files and images linked)

    Hi everyone!
    I'm hoping someone can solve this.
    I have made some ads in Edge Animate CC and need to put them on an Adserver....
    but the adserver company only accept the HTML code... only extra files or images.
    This means linking the images and the .js files to URLs. I have done it with the images but are hitting a wall with the _edge.js
    I added the script in the HTML to load the _edge.js. (<script src="http://www.christianlaursen.net/ADS/WL_AD_160x600_edge.js"></script>)
    But I get certain errors in the console which I believe relates to how Edge tries to load _edge.js locally (even if i load it separately)
    Uncaught ReferenceError: AdobeEdge is not defined                    WL_AD_160x600_edge.js:3
    Failed to load resource: net::ERR_FILE_NOT_FOUND                 file:///C:/Users/claursen/Desktop/WL_AD_160x600_edge.js
    Uncaught TypeError: Cannot read property 'stage' of undefined    edge.5.0.1.min.js:133
    Uncaught TypeError: Cannot read property 'stage' of undefined    edge.5.0.1.min.js:126
    This is as far as I got. I am not sure 100% the script is being loaded correctly, but as the console is complaining about the local file, I have
    a feeling it's with Edge's attempt to load it locally that causing it to stop.
    Anyone doing Ads with Edge? It seems it should be such a simple thing and also important thing
    Thanks in advance for reading and any given help!

    I have verified that an Edge published banner can be booked into DFP (Doubleclick for Publishers) as a third party tag by creating an iFrame of the link to your edge published HTML file. You save that file as a *.txt.There is still the issue of click URL macros, and cachebusters. For DFP the click URL macro is %%CLICK_URL_ESC%%
    So you would probably use in Edge
    window.open('cta', %%CLICK_URL_ESC%%'http://somedomain.com/');
    then for the cachebuster, DFP's is random=%%CACHEBUSTER%%
    This is what an Edge published banner tag would look like.
    <style type="text/css">
    body{
    margin: 0;
    padding: 0;
    </style>
    <iframe src="http://www.somedomain.com/yourfilename.html"
    marginwidth="0" marginheight="0" scrolling="no" width="160" align="top"
    frameborder="0" height="600"></iframe>
    IMO it is worth pursuing using Google Analytics for the reporting, as you can put your Google Analytics code in your Edge published HTML file.Hopefully someine with GA experience will chime in.
    Event Tracking in Google Analytics Universal through Google Tag Manager - YouTube

Maybe you are looking for

  • Can I increase dpi of a high resolution image in Photoshop elements?

    Hi, I have been asked to provide a photo of one of our products for press but they have requested an image which is 300dpi. The image I have is a reasonably high resolution of 1450 x1672 pixels but the dpi is under 100. Can I increase it on Photoshop

  • Need to change the column constrain from NOT NULL to NULL

    Hi, My requriment is I have to change the column constraint (NOT NULL) to NULLable (column having data), I used below query for that alter table table_name modify transaction_cost2 default null even command is successfull, but column constrain is sti

  • Forward/backward annotation

    Hello, I tried these features and was very suprised by the -bad- result. First after having placed all my components I wanted to change my 2 connectors name from U? to X? so I did it in Multisim and forward annotate it to Ultiboard. Suprise! allmost

  • New bug with 1.1.2 - video bookmarking

    Since the latest updater release (June 28th 2006) the iPod 5G with software 1.1.2 no longer remembers the playback position of videos. Even though "Remember playback position" is checked for the file in iTunes, the iPod now ignores this with software

  • Xcode Mac OS X 10.7.5 doesn't compile file with math header

    Hello! I've written a simple program (just at the beginning of my programming path). A few people have tested it on their machines, and it works: their Xcode compiles the program. My Xcode does not. Here is the program. #include <math.h> #include <st