Date_popup within a popup

I have a form that calls a popup page to allow a user to specify data that is then passed back to the calling page. If the popup page includes a date_popup field, when used, the date popup replaces the original popup page and does not return data to the original calling field.
Is there any way to stop this irritating behaviour? and encourage the popup created by the date_popup to be created in it's own window?

Found it.
I was opening my 1st popup with the window name "winLov" which is also used by the date popup. Having changed my window name to something else, works fine.

Similar Messages

  • Creating a PDF report within a popup window

    bq. Hi, \\ Within my application i've a page which uses JasperReports to generate a simple PDF report within prerender(): \\ public void prerender() { \\ try { \\ this.planned_bar_tripsDataProvider1.refresh(); \\ if (this.planned_bar_tripsDataProvider1.cursorFirst()) { \\ getApplicationBean1().*jasperReport* \\ ("PlannedBarTripsReport", "application/pdf", \\ getSessionBean1().getPlanned_bar_tripsRowSet1(), null); \\ } \\ } catch (Exception ex) { \\ log("Exception generating report", ex);} \\ } \\ jasperReport() is taken from the Sun PDF tutorial (http://developers.sun.com/jscreator/learning/tutorials/2/reports.html) \\ Now, when this page is opened within the application (browser) window the PDF report successfully renders. \\ However, when the page is opened within a popup window, using the (onclick) Javascript function: \\ function generateReport() { \\ window.open('PlannedBarTripsReport.jsp') ; \\ window.event.returnValue = false; \\ } \\ the PDF report fails to render. The result is a brief pause followed by a blank popup. No exception. No Abobe embedded window. No clues as to what's gone wrong. \\ Any advice would be greatly appreciated. \\ Ta.

    Hi Venkatv and everyone.
    This is the link where I found about Including Dynamic Images in a Report.
    http://www.oracle.com/technetwork/testcontent/apexprnt2-otn-098981.html
    It's so easy and clear to do.
    Good Luck!!!
    Regards.
    Ayrem

  • Message styuled text within a popup region

    Hi
    i am working on extension of standard pages. I have a requirement of displaying a message styled text within a popup region when i click on a button. This message styled text should hold large value like a set of instructions. How do i assign the region with this text? Should i use message styled text or some other region?
    Can anyone suggest me an approach?

    Hi
    I think this instruction s given in dev guide will be helpful to you
    You can declaratively create either short or long field-level hints:
    The short hints render immediately below the item as shown in Figure 1 (see the Purchase Order field).
    The long hints render as a selectable information icon next to the item (see the Created poplist in
    Figure 1). When the user selects the information icon, a dialog window opens as shown in Figure 3
    378
    below.
    Note that you cannot configure a static error message as shown in the UI Guidelines (this is displayed
    automatically for you when field-level validation fails; see Error Handling for additional information about this).
    You also cannot associate a warning icon with an item as shown in the UI Guidelines.
    Field-Level Hint
    To configure a field-level hint for any field that is not displaying a date (see the date format instructions below
    for this case):
    Step 1: In the JDeveloper structure pane, select the item with which you want to associate a hint.
    Note: Field-level hints can be configured only for those items whose name begins with message (for example,
    a messageChoice or a messageTextInput).
    Step 2: Set the Tip Type property to shortTip.
    Step 3: Define a message in the Applications Message Dictionary for the text you want to display. Set the Tip
    Message Appl Short Name and the Tip Message Name properties accordingly.
    The OA Framework displays your text in the current session language immediately beneath the related item.
    To configure the standard date format example beneath a date field:
    Step 1: In the JDeveloper structure pane, select the date item that needs a format example.
    Step 2: Set the Tip Type property to dateFormat.
    The OA Framework automatically renders a standard date format example using the user's date format
    preference.
    Long Hint (with Information Icon)
    To add a long hint to an item:
    Step 1: In the JDeveloper structure pane, select the item with which you want to associate a hint.
    Step 2: Set the Tip Type property to longMessage.
    Step 3: Configure the long message content:
    (Option 1) Define a message in the Applications Message Dictionary for the text you want to display.
    Set the Tip Message Appl Short Name and the Tip Message Name properties accordingly, and the OA
    Framework displays your message in the dialog shown below when the user selects the item's
    information icon.
    (Option 2) If you need complete control of the contents in the dialog window, do not specify the Tip
    Message Appl Short Name and Tip Message Name properties. Instead, design your own region and
    specify its fully qualified name for the Long Tip Region property (for example,
    /oracle/apps/fnd/framework/toolbox/webui/PurchaseOrderLongTipRN). At runtime, the OA Framework
    displays your region in the dialog.
    Figure 3: Dialog window that opens when the information icon is selected.
    Please refer OAD Devguide for complete details
    Thanks
    Pratap

  • I am trying to apply for a job on line and I am receiving this message t has been determined that you are currently running a "Popup Blocker". In order to continue, please allow this site from within your "Popup Blocker" preferences. How do I fix this?

    Hello,
    I am trying to apply for a job on line and I am receiving the following message "
    t has been determined that you are currently running a "Popup Blocker". In order to continue, please allow this site from within your "Popup Blocker" preferences
    How do I correct this??
    Thanks!

    Open Safari preferences, click on the Security icon in the toolbar, uncheck the pop-up blocker option.

  • Display external site within a popup

    Hi,
    I was trying to figure out how to display an external site within a af:popup. For example I have links on my page and the action method in my backing bean evaluates a URL based on the link that was clicked and this URL is opened as a new window. What I'm trying to do is to open the external link (for ex. www.mycompany.com/myapplication) within a af:popup.

    Thanks Vinod,
    The URL that I'm trying to invoke, in that I'm passing the userId. So based on that the contents/user data of the page are displayed.
    I'm not sure how to have the page source within the af:inlineFrame inside the af:popup. Can you please elaborate.

  • Popup reuse and instantiate data within the popup

    Hi,
    I'm trying to implement a popup I can use to edit values via a form. I only pass an ID to the popup. The popup will contact a datasource to load the data from a database, based on the ID, and pre-fill the form. If no ID is passed (or empty), the popup displays an empty form which can be used to add the record to the database.
    Based on the samples I found this was quite easy to implement... However, I'm facing a problem in instantiating values, when the popup gets called the first or the second time.
    I first added the initialisation code (clearing fields and getting new data from database) in the creationComplete of the popup; but the event does not get fired anymore when opening the popup the second time (popup gets called by PopupManager.addPopup).
    I tried triggering the init on the event 'added' or 'addedToStage' as well, but then some of the components in the popup are not yet created the first time I open the popup, giving an exception thrown...
    What's the best approach or event to trigger on, to instantiate my data when the popup displays?
    Tnx
    Stefan

    Thanks, I found where I went wrong... the removePopUp was porperly called from my code; I tried a createPopUp, but stored it in a local value, and reused it... Now I realy use a new instance and it works on the creationComplete...
    However, if I would like to use the same instance, and add it with 'addPopUp', should I still remove it?, and on which event I can best trigger the instantiation : I would like to instantiate the values when the popup is displayed, I don't want to add a button 'update the data'...?

  • Close portal window ( popup ) through an button event within the wd-app

    Hello Experts,
    the scenario is as follows:
    i click on a link within the enterprise portal environment and it opens a wd application within a popup( portal window ). This application has a CANCEL button. when a user clicks on this the portal window should close. How can this be achieved ?
    I tried firing the outbound plug of type exit of the wd app main window, but it just blanks out the screen and doesn't close the window it self.
    Regards,
    Shweta

    Hi Shweta,
    as i discussed with you to update the script code
    <html><script> function closeWindow( ){       top.close( );     }                  </script><body><form> The application was logged off successfully. <br><input type="button" value="close window" onclick="closeWindow( );" /></ form></body></html>
    in sicf transaction for your component.
    it will work (close the window).
    dont forget to give me points
    all the best...
    Rgds,
    Mahesh.Gattu

  • When popup windows open in Encore I am unable to select within that window

    Encore 5.5, for instance. . . .I got to file, dynamic link, import sequence and a pop up window comes up.  I am unable to select anything within that popup window to tell encore where to find the files I need.  This is the case with ANY popup window when working within encore.
    HELP!!

    No idea in terms of Encore as such. No problems in other programs?
    Try another mouse? In another USB port if USB?
    I can confirm that in the new project window, for example, you cannot tab or arrow between fields. If your mouse can't select, you're stuck. Same for dynamic link.
    Did you use the cleaner tool when uninstalling?
    I am not sure if reinstalling Encore necessarily recreates the preferences file. I would try this in any event. "Hold down the Ctrl and Shift keys while choosing Start > Programs > Adobe Encore <version number>. Release the keys after several seconds. The application will not start at this point, but the preferences file will be deleted." The more complete instructions are here at #12:
    Troubleshoot damaged projects in Encore on Windows
    None of that will matter, of course, if it is a mouse/mouse driver issue.
    Just FYI, there are keyboard shortcuts in Encore, but the list is not accessed from within Encore. Go here:
    Encore Help | Using keyboard shortcuts

  • How to get the values from popup window to mainwindow

    HI all,
       I want to get the details from popup window.
          i have three input fields and one search button in my main window. when i click search button it should display popup window.whenever i click on selected row of the popup window table ,values should be visible in my main window input fields.(normal tables)
       now i am able to display popup window with values.How to get the values from popup window now.
       I can anybody explain me clearly.
    Thanks&Regards
    kranthi

    Hi Kranthi,
    Every webdynpro component has a global controller called the component controller which is visible to all other controllers within the component.So whenever you want to share some data in between 2 different views you can just make it a point to use the component controller's context for the same. For your requirement (within your popups view context) you will have have to copy the component controllers context to your view. You then will have to (programmatically) fill this context with your desired data in this popup view. You can then be able to read this context from whichever view you want. I hope that this would have made it clear for you. Am also giving you an [example|http://****************/Tutorials/WebDynproABAP/Modalbox/page1.htm] which you can go through which would give you a perfect understanding of all this. In this example the user has an input field in the main view. The user enters a customer number & presses on a pushbutton. The corresponding sales orders are then displayed in a popup window for the user. The user can then select any sales order & press on a button in the popup. These values would then get copied to the table in the main view.
    Regards,
    Uday

  • Refresh data in popup by external event

    Hi folks,
    I have got a popup with an alv grid displaying data from a database table.
    I want to reload the alv grid in case new entries were created outside of this popup.
    I thought it would be possible to fire an ABAP OO event after writing new data to database.
    The popup implements a handler for this event and this handler executes a manual refresh.
    My problem is that the event handler doesn't get this external event.
    In case I fire the event within the popup screen it works.
    I already thought about a periodic screen refresh. But that causes to much database traffic.
    Are there any suggestions?
    Thanks,
    Josef

    Hi Joseph.,
    I think periodic refresh is the way for ur requirement.,  U pls post ur thread here.. [ABAP OO Forum|ABAP Objects; . U will get some more useful inputs.,
    Thanks & Regards
    Kiran

  • How can I create a popup panel in a CVI DLL and keep it on top of the calling TestStand applicatio​n window?

    When I create a panel in CVI and use InstallPopup() to display it, the user can set the focus to the main TestStand window, which causes my popup to disappear underneath it.
    I'm guessing I need the popup to be a child window of the main application window.  I've tried passing the Engine.AppMainHWnd handle as the parentHandle argument in LoadPanelEx(), but this causes an error, as it is not a valid handle.
    Also, if I call another DLL function from a control callback within my popup, which creates another popup, on closing the second popup both disappear and the program is stuck in the RunUserInterface() of the first popup.
    This seems a simple requirement, yet I don't seem to be able to find a straightforward way to achieve it.

    Steve,
    I think this is more a TestStand question than a CVI question.
    To use a CVI popup with TestStand, you should call TS_StartModalDialog() before InstallPopup().
    When you quit your popup panel, you should call RemovePopup () and then TS_EndModalDialogAndDiscard().
    The TSModalData must be the same for Start and End Modal dialog.
    Bruno

  • Need to dynamically include an image file when calling a popup window

    I am working on a web dynpro Java app which uses a button to call a popup window/view. Within the popup, I want to dynamically choose an image to show (from mime types) based on a criteria...there will be multiple buttons on the initial view that all call the same popup, but the popup will have content specific to which button called it (specifically the image embedded in the view).
    My question is, what is the proper/best way to do this?
    Here are some possible ways I can think of...
    1. Pass a parameter from each button during the call of the event, but how does that get sent to the implementation of the second view for use in determining which image? And, how do I modify the source property of the image element based on that parameter?
    2. Create multiple pages and views for each button to call...but this seems decidedly un-DRY.
    3. Saw one posting on how to dynamically create a cached image...I could use different event handlers in the initial view, then load individual images from the mime library at that point...cache it into a hard-coded image name...then just call the identical view every time. Not sure this is even possible...input?
    I don't know specifically how to implement any of these options, or know if there are other/better ways. Any help would be appreciated.

    Just create a context attribute "imageFileName" in the component controller or a custom controller, map this attribute from both views (the one that contains the buttons and the one in the popup window that displays the image).
    Now you can have an separate action for each button or one common action. In the first case just set the "imageFileName" inside the action handler for the specific button. In the second case use an action parameter "buttonId" and a parameter mapping
    button.mappingOfOnAction().setParameter("buttonId", button.getId());
    to determine which button triggered the action. After having checked which button was pressed, set the "imageFileName" accordingly.
    Armin

  • Display 'No Data Found' message w/ htmldb PopUp

    Hi all,
    Is it possible to control message within htmldb PopUp Lov, sort of 'No Data Found' available in Report template under topic 'When No Data Found Message'?
    Thx
    lam

    hi
    you can create two region with conditions:
    1. Chart region (display if your qurey return values)
    2. Html region with static "Nothing to display" (display if your query no data found)

  • How do you change the background color & font in a text-only popup?

    It has been ages since I did this and I can't seem to remember how. I tried to edit the style sheet but it only has options to change the text-only popup hotspot/link and I need to change the background color and font style within the popup itself. Tried Adobe's help but it had no answer for me. Any one out there know how to do this? I am running RoboHelp 7.

    By Popup do you mean a link that when clicked causes a separate topic to be displayed in a seperate window (popup) or Drop Down text?
    For Popups that are displayed in a new window then the font and colour is changed in the topic that is displayed. Simply open the topic and change colours / features as required
    If you are using drop down text and confusing this with a popup then the font and colour is changed when creating the drop down text. Right click the text and select Font to change colour etc.

  • Tables in popups not refreshing

    I'm having difficulty with some table refreshes within a popup. Here's my scenario. I have a window that displays a table. The user clicks edit, and the table is shown in an “edit” popup. At this point, if the user makes changes, clicks ok, then the table on the beginning page is refreshed correctly. To do this, I am using the following method to refresh the page fragement, AdfFacesContext.getCurrentInstance().addPartialTarget(this.getViewTablex());
    Here is the issue,
    The user chooses to edit the main table, and the edit popup appears. So far so good. The user then wants to add a new record, they click “Add” within the edit popup so I then show a new popup form where the user enters the fields for the new row. When they click ok on the "add" popup form, then the edit popup (from which they called the add popup) does not refresh the table with the newly added row. The row they added then appears as the first row in the edit popup.
    What further complicates this is that I have to validate the "edit" popup rows when they click ok, to make sure all the data is valid, so I can not do a commit on the underlying table until after the validation. But, I need the newly added row in the table (or view) in the edit popup as part of my validation.
    So, I have a table that makes use of an edit table popup that in turn makes use of an add form popup. But I cannot commit until I validate the edit popup. The problem is I’m not getting the newly added row that was created in the “add” popup to show up in my edit popup.
    Here is the add popup handler I’m using
    public void onAddxxxPopupFetchAction(PopupFetchEvent pPopupFetchEvent) {
    try {
    OperationBinding lOperationBinding =
    lBindings.getOperationBinding("CreateInsert");
    //If the Insert failed, return a "Severe" message.
    Object result = lOperationBinding.execute();
    if (!lOperationBinding.getErrors().isEmpty()) {
    return;
    } catch (Exception e) {
    public void addxxxDialogOKAction(DialogEvent pDialogEvent) {
    try {
    //refresh the page fragment.
    AdfFacesContext.getCurrentInstance().addPartialTarget(this.getEditPopupTable());
    } catch (Exception e) {
    And here is the popup portions of the page fragment
    <af:popup id="addPopup" contentDelivery="lazyUncached"
    popupFetchListener="#{backingBeanScope.backing_ui_pages_Maintenance. onAddxxxPopupFetchAction }"
    popupCanceledListener="#{backingBeanScope.backing_ui_pages_Maintenance.onAddxxxPopupCancelAction}">
    <af:dialog id="addDialog"
    dialogListener="#{backingBeanScope.backing_ui_pages_Maintenance. addxxxDialogOKAction }"
    closeIconVisible="false">
    and for the edit popup;
    <af:popup binding="#{backingBeanScope.backing_ui_pages_Maintenance.editPopup}"
    id="editPopup">
    <af:dialog binding="#{backingBeanScope.backing_ui_pages_Maintenance.editDialog}"
    id="editDialog" closeIconVisible="false"
    dialogListener="#{backingBeanScope.backing_ui_pages_Maintenance.editxxxDialogOKAction}">
    I am using JDeveloper 11.1.1.6.0.
    Any help would be appreciated.
    thanks!
    Doug

    Seems like a PPR issue. Try have a partialTrigger corresponding to the OK button of add popup on the table in the edit popup.
    Thanks,
    TK

Maybe you are looking for

  • Changes r not reflected in delivery address

    when i am changing Delivery address for a PO in me22n manualy, changes are not reflected in print preview. the smartform is copied from standard         /SMB40/MMPO_L to get the Delivery address i m using below code: IF is_pekko-werks NE space.   PER

  • How to configure the maintenance item screen layout

    Hello experts, I need to configure Maintenance Item Screen layout . How do I do that? I checked in SPRO and could not find a place. Need to make some some fields as required. Thanks, Raneetha.

  • Project Server 2013 - Reporting on Workflow Stages and Phases

    I just received a requirement to build a report listing all the projects and their corresponding Workflow Stages/Phases in a chart.  I did a chart using cube with the Project NonTimephased Data, but how will I do this with workflow stages and phases.

  • Problem in conversion routine in CGPL_PROJECT and CPGL TEXT Tables

    Hi experts...      I have a requirement in Project planning module for audit monitor report... Based on the External ID (is nothing but a CAPA Number)in CGPL_PROJECT i need to display description(CAPA Description) from CPGL_TEXT Table.. But there is

  • XML creation in AS2

    Hello everyone, Im trying to create a text node within a child node: user_xml.firstChild.appendChild( user_xml.createTextNode("<![CDATA[------]]>") ); but when I trace this I get: user_xml = <UserDetails><![CDATA[------]]></UserDetails> Which is not