Redirecting popup windows to embed window

I'm working on embedding javafx inside 3d engine. I'm using EmbeddedWindow/HostInterface route used by JFXPanel and it works perfectly for most of the cases. Unfortunately, popup windows (right click, top menu, choice box etc) are giving some trouble in full screen mode - they are popping up as new top-level windows instead of being painted on existing scene.
This works in windowed mode - they pop up on top of render window and things work properly. But in full screen mode, I will need to catch them somehow.
I don't suppose there is an easy way to display all popups in-scene... but is there any way to catch popups being displayed and manually render/redirect needed events? It doesn't have to be very efficient, as popup windows are not very common.

thanks.. i had those PDFs docs mentioned in the notes, but never could pinpoint how to change to inplace navigation..
note 1405902 clearly states how to do this in the Solution section
Solution
See attached document.
For configuring inplace navigation:
1. Inplace navigation is supported by the launchpad framework.
2. From the application, whenever an OIF is launched from the workcenter, any navigational step from this OIF can be configured as inplace navigation or new window.
3. To configure this as inplace navigation, go to launchpad (transaction lpd_cust). Choose any entry and go the details in edit mode. Click on Show Advanced Parameters. Change the parameter Navigation Mode to Inplace Navigation.

Similar Messages

  • Open popup window and redirect user to home page in sandboxed solution

    i've created a sandboxed solution visual webpart and it has submit button so when user fills the information in the text boxes availble in webpart and clicks submit button so I want to open popup button containg success message and ok button so when user
    clicks ok button in popup window i want user to be redirected to the home page of the site.
    i tried to open popup and showed success message by below code
     string gotohomepage = "http://sp2013:1111/Pages/home.aspx";
                    ScriptManager.RegisterStartupScript(this, this.GetType(), "message", "alert('Your Record has been submitted successfully,you will be redirected to home Page shortly');location.href =
    '" + gotohomepage + "';", true);
    but it's not opening popup window can anyone help how do i open popup window and redirect user to home page in sandboxed solution

    Page class and script manager are not supported in sandbox solution
    You can create model popup to achieve this
    below are the reference links
    http://blogs.msdn.com/b/chaks/archive/2011/09/14/modal-dialog-box-in-sharepoint-sandbox.aspx
    http://social.msdn.microsoft.com/Forums/en-US/9427db4d-60f2-4b2a-8db6-b50d01ac4f23/how-to-create-modal-popup-using-sandboxed-solution

  • Destype=Printer; without url being redirected or popup window

    In our old client/server enviroment, our users printed some reports directly to the printer. In the Oracle 9I web server, we user web.show_document to run a report with '_blank' so that the form is not changed to the report URL. Destype=Printer is in the URL and printers are setup on our AIX Unix server. It works but our users do not want to see any popup window and want to stay in a form. A message comes up saying "Report ran successfully". The users don't want this message or the window that it is in caused by web.show_document. They just want to print without seeing anything on the screen. Is this possible?

    Hi,
    Please try with following options
    1. Enter DESNAME with in quotes as '\\rgasion\F5-copyroom east -1' and print the Report
    (or)
    2. Go To Windows Printer Setup, Change printer name to F5-copyroom_east_-1(Remove space with underscore), then try to print
    or
    3. If you printer is Shared Network printer, Open Printer Property dialog and go to Sharing page, there set share name as F5-copyroom_east_-1, then try to print
    Thanks
    Oracle Reports Team

  • Save and close popup window

    I have a typical popup window launched using the builtin javascript:popupURL().
    I would like a Save and Close button on this popup window that does
    1. Submits the popup page so that changes are saved into session state
    2. Close the popup window
    3. Refresh the parent window so that updates in (1) are reflected
    What is the recommended way of doing this? I was thinking of the following URL redirect on the Save & Close button
    doSubmit('SAVE');
    window.opener.location.reload();
    window.close();Do I need a same-page branch on the popup page? If so, why? If not, why? ;-)
    Comments?
    Thanks

    This is a bit of javascript that I nicked which works well for me:
    -- 1. Add the folowing to your page header or create a new page template --
    -- (popup window template) and put it in the header section. --
    SCRIPT LANGUAGE="JavaScript">
    function loadinparent(url, closeSelf){
         self.opener.location = url;
         if(closeSelf) self.close();
    </SCRIPT>
    -- 2. Use the following to call the function. the true and false keeps the parent--
    -- window open or closed. Obviously set any values in the URL. --
    javascript:loadinparent(''<URL>'', true)
    eg. javascript:loadinparent(''f?p=&APP_ID.:40:&SESSION.::NO::P40_ID:'||ID||''', true)
    -- Inc the following comment in your header --
    -- Version 1.0
    -- Last Updated: May 18, 2000
    -- Code maintained at:
    -- http://www.moock.org/webdesign/javascript/
    -- Copy permission granted any use provided this notice is unaltered.
    -- Written by Colin Moock.
    Simon

  • Firing a view based on a selection from a popup window

    Hi,
    I have a main window in which there is "Display Details" button and a view container to hold a view. On clicking this display button I'm showing a pop-up window which will show the user the options to select a particular view. After the selection and clicking on OK in the pop up window the corresponding view should be shown the view container.
    I tried this by firing an outboung plug to the corresponding view based on the selection in the popup window. The problem is I cannot create a navigation link in the window as the popup view is not part of the main window.
    Could you please provide me your insights on how to handle this scenario?
    Regards,
    Vivek

    Hi Vivek,
    Please refer this article: [Creating Navigations and Embedding Views at Runtime - Web Dynpro ABAP|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50f3660d-ad29-2b10-2482-8120e56942dd?QuickLink=index&overridelayout=true]. Also refer [Thomas' reply in this thread|Embed a view dynamically in a ViewContainerUIElement;.
    Regards

  • Migration from 1.6 to Apex 3.1 - Popup windows no longer working

    We just moved our application to Apex 3.1 from HTMLDB 1.6. The only thing that is not working since we migrated is the popup window that used to work. Now a window still pops up, but it is the login screen, not the expected window, and even if one logs in at that point, it just takes them back to the main screen, not to the expected popup window. Is there some setting I have to change to make it work as it did before, or does the code go somewhere else now? This is the code:
    The URL redirect of a button on the calling page: javascript:callMyPopup('P4_PRI_CONTACT_ID');
    The javascript on that same page: <script language="JavaScript" type="text/javascript">
    function callMyPopup (formItem1) {
    var formVal1 = document.getElementById(formItem1).value;
    var url;
    url = 'f?p=&APP_ID.:10:::::P10_CONTACT_ID:' + formVal1 ;
    w = open(url,"winLov","Scrollbars=1,resizable=1,width=800,height=600");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    </script>

    As of v2.0 session IDs were required for f?p URLs. Oracle® HTML DB Release Notes Release 2.0 Part Number B16374-02
    Mike

  • TIP: Building Modal Popup Windows

    Build Modal Popup Pages
    Introduction
    The following is based on the 'How To Document' - 'Build Custom Popup Pages'.
    This How To will show the developer how to create Modal Popup windows with the ability to pass information back to the parent window.
    Example Scenario
    The example described in this how to adds a custom modal popup LOV to a form on the SCOTT.EMP table. Clicking the popup LOV link on the form page will popup a Modal LOV page that allows users to search by ENAME, JOB, and SAL. Selecting a value from this LOV page will close that popup LOV page and populate the ENAME, JOB, and SAL fields on the form page with the selected values. Additionally, had the user entered some data into the ENAME, JOB, and/or SAL fields on the form page, that data would be used in the initial search when the popup LOV page is first shown.
    Step 1 - Create a simple form page on SCOTT.EMP
    To create the form page, simply step through the HTML DB "Form on a Table or View" wizard against the EMP table accepting the defaults. For this example, create the form with a page number of one, and make sure to allow the ename, job, and sal fields to be editable. When the wizard completes, page 1 of the application should have the items P1_ENAME, P1_JOB, and P1_SAL on it as text fields.
    Step 2 - Create a popup page with search fields
    Next, create a page that's to be used as the popup window: Page 2. Ultimately, this page will have javascript, a report region, and some buttons. For now, though, just create a page 2 with the items P2_ENAME, P2_JOB, and P2_SAL on it as text fields.
    Step 3 - Set Modal popup page header requirements
    A) Modal windows by default cache the information they display. When creating a popup window which displays different information each time it is called or to allow searching the caching default must be switched off.
    Add the following meta-tag to the "HTML Header" field of the page-level attributes screen for page 2 to accomplish this:
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    B) Modal windows by default open a new window when running any redirect calls. When creating a modal popup which passes back parameters to the parent window. The modal window has to be forced to fire redirect calls within its own window rather than open a new window for the redirect.
    Add the following tag to the "HTML Header" field of the page-level attributes screen for page 2 to accomplish this:
    <base target="_self">
    Step 4 - Add Javascript call to the popup page
    Because the popup page should filter its result set based on any values that the user might have entered onto the form page, you need to add a javascript function that would pass those values off. Add the following function to the "HTML Header" field of the page-level attributes screen for page 1 to accomplish this:
    <script language="JavaScript" type="text/javascript">
      function callMyPopup (formItem1,formItem2,formItem3) {
        var formVal1 = document.getElementById(formItem1).value;
        var formVal2 = document.getElementById(formItem2).value;
        var formVal3 = document.getElementById(formItem3).value;
        var url;
      url = 'f?p=&APP_ID.:2:&APP_SESSION.::::P2_ENAME,P2_JOB,P2_SAL:' + formVal1 + ',' + formVal2 + ',' + formVal3 ;
      // IE Browsers modal popup window
      if (window.showModalDialog) {
        w = showModalDialog(url, window.self,"status:0; scroll:1; resizable:1; dialogWidth:25; dialogHeight:43");
        // w is an array returned from the modal popup containing the passback values
        if (w) {
          document.getElementById("P1_ENAME").value = w[0];
          document.getElementById("P1_JOB").value = w[1];
          document.getElementById("P1_SAL").value = w[2];
          document.getElementById("P1_SAL").focus();
      else {
      // mozilla based browsers modal popup window
      w = open(url,"winLov","Scrollbars=1,resizable=1,width=800,height=600", modal="yes");
      if (w.opener == null)
        w.opener = self;
      w.focus();
    </script>Though you don't need to know how to read javascript for this example, it helps to understand that this function only does one important thing: it opens a modal popup window of page two in our application while passing values to P2_ENAME, P2_JOB, and P2_SAL. It gathers those values to pass from the names of the HTML DB items provided to it. The call to this function will be added in the next step below.
    Step 5 - Add a popup link next to the P1_SAL field on the form page
    Add a link to the form page that will call the callMyPopup function above and pass it the values it needs. To do so, place the following HTML in the "Post Element Text" field attribute of the P1_SAL item:
    <~a href="javascript:callMyPopup('P1_ENAME','P1_JOB','P1_SAL');">Click for LOV<~/a>NB. remove ~ from above when deploying
    Step 6 - Add the LOV report to the popup page
    The next step is to create a report on the popup page based on the values passed from the form on page one. The tricky part of this report is providing a means for the selected values to be passed back to the form page. This can be achieved by having a column of the report render as a javascript link that would close the popup window and pass the ename, job and sal values for that row back. Start by adding a simple report region to our Modal popup page that uses a query such as:
          select ename, job, sal , 'placeholder' the_link
            from emp
           where ename like '%'||:P2_ENAME||'%'
             and (job = :P2_JOB or :P2_JOB is null)
             and (sal = :P2_SAL or :P2_SAL is null)Note that the last column in this query is just a placeholder. once the region is created, turn that placeholder into a link by doing the following:
    Navigate to the Page Definition for page 2
    Next to the name of the report region created in step 6, Click Q
    Next to the column THE_LINK, click the edit icon
    In the "Link Text" field enter the string "select"
    In the URL field enter: javascript:passBack('#ENAME#','#JOB#','#SAL#'); Click the "Apply Changes" button
    Step 7 - Add the javascript function to the Modal popup page to pass selected values to the (parent) form page.
    In the previous step you added a call to a javascript function, passBack. Now add that function to the top of Modal popup page 2. In the same manner as step 4 above, add that passBack function to the page 2 by putting it in the "HTML Header" field of the page-level attributes screen. The function should look similar to the following:
    <script language="JavaScript">
       function passBack(passVal1, passVal2, passVal3)
         // IE Browser return the passback values in an array
         if (window.showModalDialog) {
           var retVal = new Array(passVal1, passVal2, passVal3);
           window.returnValue = retVal;
           window.close();
         // Mozilla based browsers right the passback values directly into the parent window
         else {
           opener.document.getElementById("P1_ENAME").value = passVal1;
           opener.document.getElementById("P1_JOB").value = passVal2;
           opener.document.getElementById("P1_SAL").value = passVal3;
           opener.document.getElementById("P1_SAL").focus();
           close();
    </script>This function simply sets the values of P1_ENAME, P1_JOB, and P1_SAL with the values of the whatever's stored to the three HTML DB item names passed to it. It also closes the current window and puts the cursor back into the P1_SAL field.
    Step 8 - Polishing
    The basic functionality of this custom modal popup window has been created in steps 1 though 7. To make its usage a little more friendly, it's advisable to add Cancel and Search buttons to the popup window page. The Search button should just be added as a regular button that branches back to the page 2. Adding this button allows users to re-query for LOV options without having to return to our form page. The Cancel button should be created with an "Action" of "Redirect to URL". The "URL Target" of the button should be javascript:window.close(). As the code suggests, the Cancel button would just close the popup window (with no values returned).
    Hope this is of use....

    Everything said above is working fine but in Mozilla small popup is coming in top left corner of browser..
    so please help me so that it is opened in proper width and height in mozilla.

  • DW 8 to play swf file in popup window

    The swf file plays fine with the source file (flv) on
    streaming server. see page
    http://www.jobclub.com/testing/healthcare.html
    Open Employment Video Profile in center. All I want to do is to
    have iit play in a popup window.
    But I cannot figure out how to play the swf file in a popup
    window
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','285','height','231','title','HealthSouth','src','eva/evaemp/HC240','quality','high',' pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shockwa veFlash','movie','eva/evaemp/HC240'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="285" height="231" title="HealthSouth">
    <param name="movie" value="eva/evaemp/HC240.swf" />
    <param name="quality" value="high" />
    <embed src="eva/evaemp/HC240.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="285"
    height="231"></embed>
    </object>
    </noscript>
    Thanks
    Mat Media

    Do you really want to open a new window, or do you just want
    to show a hidden layer that looks like a pop-up?

  • Image in popup window header

    How to Make a image or icon appear in popup window header?
    I have created a MXML component using TitleWindow.. and i am using it as a pop up..
    How do i set titleIcon for the popup?

    Embed(source='assets/image.png')] 
    private static const iconImg:Class;
    <mx:TitleWindow titleIcon={iconImg}/>
    This solved my issue..
    titleIcon="@Embed(source='assets/image.png')" this gave an error.
    Thanks for the responses..

  • Selecting "Information" gives Quicktime popup window. What's wrong?

    I am using a freshly installed copy of Pages (from App Store) on a MacBook Pro 13" (2011). The first operation after startup already fails. When I select "Information" (via icon or menu) I get the popup window belonging to Quicktime featuring (translated from German) "Start/Stop", "Title image", "Repeat", "Volume", and "Control", but no facilities to set the page format.
    What can I do to make the software useable?
    Ulrich

    Why are you using a script to load the movie? Why not just
    embed it in the
    page 'normally' like you have on the other popups? But do it
    properly so
    they will play in IE6. They do play in Firefox, though. All
    except the "24"
    one.
    You are calling this script:
    http://www.myhappypeople.com/Guilllermo/Pages/InsertMovie.js
    But it is not there.
    BTW: the main image on
    http://myhappypeople.com/ is
    also missing.
    http://myhappypeople.com/Collage_01b.jpg
    not there.

  • Not closing popup window with firing Exitplug

    Hi Friends,
    Could you please help me in resolving below webdynpro issue.
    With a button (SAVE) click on 1st webdynpro application, Iu2019m calling a confirmation popup window using CREATE_POPUP_TO_CONFIRM method ("Data has been saved" is the message in the popup window). Then with the OK button on confirmation popup window, Iu2019m calling the EXIT plug to go to another webdynpro application
    Issue is: If I execute this webdynpro application in Enterprise Portal then the confirmation popup window is not getting closed even after reaching to the 2nd webdynpro.
    But If I execute direct webdynpro URL, confirmation pop is getting closed and there is no issue.
    CODE:
    Code for SAVE button action: Here Im calling the confirmation popup window.
        DATA: lt_text TYPE string_table.
        DATA: mr_popup_window TYPE REF TO if_wd_window.
    pop a confirmation window for display purpose
        DATA: l_window_manager TYPE REF TO if_wd_window_manager,
              l_cmp_api        TYPE REF TO if_wd_component,
        l_window         TYPE REF TO if_wd_window.
        l_cmp_api        = wd_comp_controller->wd_get_api( ).
        l_window_manager = l_cmp_api->get_window_manager( ).
        APPEND 'Data has been saved' TO lt_text.
        CALL METHOD l_window_manager->create_popup_to_confirm
          EXPORTING
            text           = lt_text
            button_kind    = if_wd_window=>co_buttons_ok
            default_button = if_wd_window=>co_button_ok
          RECEIVING
            result         = mr_popup_window.
    associated the action handling methods with the window
        DATA: view_controller TYPE REF TO if_wd_view_controller.
        view_controller = wd_this->wd_get_api( ).
        mr_popup_window->set_remove_on_close( abap_true ).    CALL METHOD mr_popup_window->subscribe_to_button_event
          EXPORTING
            button      = if_wd_window=>co_button_ok
            action_name = 'ON_SUCCESS_OK'
            action_view = view_controller.
        mr_popup_window->open( ).
    Code for OK button action of POPUP window: Here Im calling the EXIT plug.
        DATA: lr_ref TYPE REF TO ig_yics_userdefault,
              lv_url TYPE string.
        CALL METHOD cl_wd_utilities=>construct_wd_url
          EXPORTING
            application_name = 'YICS_HOMEPAGE'
          IMPORTING
            out_absolute_url = lv_url.
        lr_ref = wd_this->get_yics_userdefault_ctr( ).
        lr_ref->fire_go_exit_plg( url = lv_url ).
    Regards,
    Vijay.

    >Exit plugs do not work in a portal environment.
    This is a good point that I feel silly for not remembering...
    You can check if your application is running in the portal using the IF_WD_APPLICATION->GET_CLIENT_ENVIRONMENT method
      lo_api_componentcontroller = wd_this->wd_get_api( ).
      lo_api_application = lo_api_componentcontroller->get_application( ).
      l_client_environment = lo_ap_application->get_client_environment( ).
    if it is - then you can use the IF_WD_PORTAL_INTEGRATION interface
    lo_portal_integration = lo_api_componentcontroller->get_portal_manager( ).
    and the you can use the IF_WD_PORTAL_INTEGRATION methods to navigate eg - NAVIGATE_ABSOLUTE
    call method lo_portal_manager->navigate_absolute
        exporting
          navigation_target   = 'ROLES://portal_content/blah/test_URL'
          navigation_mode     = if_wd_portal_integration=>co_show_inplace
    If you're navigating in the portal you should probably have iViews set up for the apps you are calling, but it is possible to create a pass-through iView which will redirect to a URL passed as a parameter.
    [Setting the URL at Runtime - in URL iVIew|http://help.sap.com/saphelp_nw04/helpdata/en/45/85087d755d1f88e10000000a1553f6/frameset.htm]
      data lo_api_component  type ref to if_wd_component.
      data lo_portal_manager type ref to if_wd_portal_integration.
      data lt_params type wdy_key_value_list.
      data ls_param type wdy_key_value.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_portal_manager = lo_api_component->get_portal_manager( ).
      ls_param-key = 'forcedURL'.
      ls_param-value = 'http://www.google.com'.
      append ls_param to lt_params.
      call method lo_portal_manager->navigate_absolute
        exporting
          navigation_target   = 'ROLES://portal_content/blah/test_URL'
          navigation_mode     = if_wd_portal_integration=>co_show_inplace
          use_sap_launcher    = abap_false
          launcher_parameters = lt_params.
    Hope this helps
    Chris
    Chris

  • Web sphere portal popup windows

    Hi,
    I used this forum before with great results maybe some one can help me this time also.
    I'm working in a Websphere Portal project using JSF and RAD6 to create the portlets. I like the way it works execept when I try to create popup windows. How can I create popup windows that they don't keep context the only one I can create is the HelpView page. Is there a way to call other forms from Helpview like a redirect or something like that or is any other way to create popup windows any help or suggestion will be appreciated.
    Thanks

    i have followed line to line as per post installation tasks given in sun site. No logs are generated in policy agent. i.e
    bcoz policy agent is not at all intercepting the request. do we need to do any thing more to add a filter in websphere 6.1
    To give you background:
    This is a clustered enviornment and each node has 3 instances [ appserver,nodeagent, websphere_portal]
    we have installed the policy agent on each of the instances.
    Now when i access the admin interface my policy agent intercept redirect to SSO.
    When i access portal instance policy agent doesnt intercept
    there are no logs generated in accessmanager or policagent.
    Edited by: sat on Jun 29, 2008 11:18 AM

  • Popup Windows Buttons

    Hi,
    we create the buttons when opening the popup windows , like as
    lr_popup = lr_window_manager->create_window(
      MODAL               = ABAP_TRUE
      window_name         = 'CHGOFFER'
           "Name of the window created in step 2
      TITLE               = 'Talep Deu011Fiu015Ftir'
      CLOSE_BUTTON        = ABAP_TRUE
      BUTTON_KIND         = if_wd_window=>CO_BUTTONS_YESNOCANCEL
    *  MESSAGE_TYPE        = if_wd_window=>co_msg_type_error
    *  CLOSE_IN_ANY_CASE   = ABAP_TRUE
    *  MESSAGE_DISPLAY_MODE = MESSAGE_DISPLAY_MODE
    ** Adds an action to the popup screen buttons
    lr_view_controller = wd_this->wd_get_api( ).
    lr_popup->subscribe_to_button_event(
                  button = if_wd_window=>co_button_yes
                  button_text = 'Onayla'
                  action_name = 'APPROVE'
                  action_view = lr_view_controller
                  is_default_button = abap_false ).
    lr_popup->subscribe_to_button_event(
                  button = if_wd_window=>co_button_no
                  button_text = 'Sil'
                  action_name = 'DELETE'
                  action_view = lr_view_controller
                  is_default_button = abap_false ).
    lr_popup->subscribe_to_button_event(
                  button = if_wd_window=>co_button_cancel
                  button_text = 'Reddet'
                  action_name = 'REFUSE'
                  action_view = lr_view_controller
                  is_default_button = abap_false ).
      lr_popup->open( ).
    we can create only 3 buttons as 'YES NO CANCEL' with this method becase of IF_WD_WINDOW interface has type of WDR_POPUP_BUTTON_KIND.
    But i want to create 5 buttons for my popup window. is it possible?
    Can somebody help me pls?
    Thanks.

    As someone has already stated you can design as many buttons as you want into the view that you embed into the popup.  However for the bottom bar of the popup, you can only work with the buttons that SAP provides.  You can not add custom buttons into this bottom bar. 
    Personally when I have custom buttons, I go ahead and hide all of the standard buttons in the bottom bar.  I recreate them on the same button line as my custom buttons so that the interface looks more consistent.

  • Trying to get a popup window to work via report

    I have a need to offer a link in reporting on the Opportunity Description field where the description would be displayed in a popup window (I do not wish to launch another child OOD window via prompt report). The fact that these description field can be quite long and make reports difficult to read drives this request. I am currently looking at overriding the data statement on the column in question. For example, I can easily do the following:
    @[html]"<a href=""http://www.cnn.com"">"@"</a>" -which simply proves that I can embed html code with the column value
    I have tried the following with no success:
    @[html"<a href=""javascript:mywindow=window.open('','','width=200,height=100');
    mywindow.document.write('"@"');mywindow.focus();"">"@"</a>"
    I have a feeling that the problem lies in the escaping of the quotes but hoping that someone else may have the answer.  Also, if there is a better way to accomplish what I'm trying to do, please chime in.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi Glfnute,
    When writing the HTML code in column formula, ensure you start it with a single quote and also end the expression with it. So your code will look something like this:
    '{<}a href = "http://.... com" target="_blank" {>}' || column name here || '{<}/a{>}'
    Using target = blank will open your link in new window.
    Curly brackets are used above to prevent the text from getting rendered as an html over here. Remove them and use the remaining string in your report.
    I hope this helps.

  • Need popup window from cfform to go to PayPal using their button

    I have a cfform page (ColdFusion 8) that is embedded in an iframe in my standard html webpage. (Embedded so that I still have the same outer "envelope" as the rest of the pages; nav bars, etc.) I have the form post back to itself in order to check for injection problems, validation beyond basic form validation, etc, then insert form entries into a database. I am trying to then pass the visitor on to PayPal for them to make the payment. This could be either by way of a popup window or a redirect. The problem is that if I just put the PayPal button in my .cfm page it doesn't work. Also, it seems I need to get it out of the iframe context. Of course it would be nice to go the other way (which I have also tried) and have the potential donor first go to PayPal, enter their info, and then have them redirected back to my page. I realize I could then get some of the info I need from them (name, email, etc) in the PayPal IPN return, but there are 2 problems with this. 1) I have to rely on them clicking the "go back to ....." link in PayPal and 2) I still need other info that PayPal doesn;t pick up, like what department category they want their donation to go to, etc. which I can get up front from them if I go the first route mentioned.
    I have looked into cfhttp and cflocation tags. I don't seem to be finding any clearcut answers!
    Thanks for any help in advance!

    This link may help.
    http://www.danvega.org/blog/index.cfm/2008/3/4/ColdFusion-8-Grid-Context-Menu-Part-II

Maybe you are looking for

  • How many JSP's at once?

    We have a server with 600 JSP's. Does that sound like a lot to you guys? I mean, they are all staying in memory and taking up GIGS of space. Is that right? Is there a good rule of thumb for the ration between # of JSP's and in-memory size? For exampl

  • Using SORT function in mapping

    Hi, I am having trouble getting my head around using the SORT function. My interface is IDOC to File, The IDOC has a repeating segment (PAYLOAD) that can be of 3 types, either type A, B or C (this is set using a "TYPE" field). In my file structure I

  • Can't view document workspace-help?

    I suddenly cannot view my document workspace in PhotoShop CS3...does anyone know what I might have done or need to reset?  I can see the open document in the navigator, but cannot access it on the screen.

  • Need help - Catalyst 3550 on CCM4.1 Voip

    Guys. We had a Catalyst 3550 switch fail last week, and the guy who really knows this system has left the company. The switch has a non-free molecules error, which i believe is terminal. I've sourced a replacement switch and need help configuring it.

  • What is that mean ?

    hi all , help me with this please Oracle XE can only be used on single processor machinesif i have core 2 due processor or core i3 , then i can not work on xe database or what ? . It can only manage up to 4 GB of data and 1 GB of memory. is that mean