JQuery Modal Dialog

Hello
I want to create a jquery modal dialog.
I follow Denes Kuniceks example (http://apex.oracle.com/pls/otn/f?p=31517:257:2686314880885355:::RP,::)
It works fine.
With one exception: I also start with a report, but this report contains a parameter that is passed from another page.
So the query is something like
select ename
, sal
, comm
from emp
where empno = :p23_empno
After executing the on demand process this parameter is cleared so the report returns no rows.
How can I prevent the parameter from being cleared??
Kind Regards Erik

I just want to return to my original report page.Then <u>remove the "doSubmit('SEARCH'); " line from the "addPerson() " function </u> (or the equivalent function you have created). So the form closes without doing anything to main page.
Since you are on apex 4, you dont need to use an ondemand process for this (there is even a page specific ondemand component called callback for specific ajax calls from that page) , but simply define a Dynamic action that fire when the button is clicked(remove the button action and add an HTML id that you can use in D.A to select the button Or you can even use a region button for this).
Choose execute PLSL block, use the same Dynamic action code and add all those items to the "Items to Submit" option.
If you want to refresh the report it would be as simple as adding another true action of type refresh region and choose the report region.

Similar Messages

  • Item not being saved when item is in a jquery modal  dialog

    Hi all,
    I followed instructions found here :
    http://shijesh.wordpress.com/2010/04/10/jquery-modal-form-in-apex-4/
    to create a jquery modal dialog, this is the code I added in html header :
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
       $('#ModalForm').dialog(
            modal : true ,
            autoOpen : false ,
            width : 425,
            closeText : 'Close',
            stack : false,
            resizable : false,
            buttons  : {
                Cancel : function() {
                         closeForm();
                Save : function() {
                    updateMEMOVELD();
    function openForm()
        $('#ModalForm').dialog('open');
    function closeForm()
        //$('#ModalForm input[type="textarea"]').val('');
        $('#ModalForm').dialog('close');
    function updateMEMOVELD ()
       var get = new htmldb_Get(null, &APP_ID.,   
                        'APPLICATION_PROCESS=f_memo', 0);
       get.add('P9_MEMOVELD',$v('P9_MEMOVELD'));
       var gReturn= get.get();
       //alert(gReturn);
       //alert($v('P9_DATUM'));
      $s('P9_MEMOVELD',gReturn);
      alert($v('P9_MEMOVELD'));
      $s('P9_MEMOVELD_COPY',$v('P9_MEMOVELD')); 
      $('#ModalForm').dialog('close');
    </script>my situation is a little different, my modal does not have to perform an sql update, just change a field
    the user will then save in the main form
    for some reason the field never gets updated in the db
    I even created a on demand application process called f_memo :
    BEGIN
      APEX_UTIL.SET_SESSION_STATE('P9_MEMOVELD',:P9_MEMOVELD);
      htp.p(:P9_MEMOVELD);
    END;why is my field not send to the db ?
    it works when I delete this from the region header :
    < d i v id="ModalForm" title="Add Person" style=" d isplay:n one  "   >but then of course I no longer have a modal dialog
    what's wrong ?
    I put the code online at apex.oracle.com
    workspace XONIXRS
    login/password demo/demorun the application
    click on lijst facturen (invoices) (in the right sidebar region)
    then click on the zoeken (search) button
    a report appears, click on edit on the first line (200900017)
    now a form appears, click on the outright button memo
    now the modal shows up, change the field and click on save
    click on ok (for the alert) and then click on Save invoice
    you will remain on the same page
    now click on annuleren
    and then click on edit on the first line (200900017) again
    then click on memo again, you will see the memo has not been changed
    how comes ?
    Kr
    Martin

    The issue is that creating a modal of a region lifts that region from the HTML. Just have a look at the DOM when you run your page and not the source html, because that does not reflect changes to the dom made on page load. This means that your memo-field is removed from the FORM-tags, and effectively won't submit to session state. The item is not processed when you submit the page! You can track that through debugging your page. Memo is not saved and not processed.
    Trying to save the value to session state is not enough, it doesn't really matter in this case. The moment you submit the page, the session state will get overwritten by the submitted values of the items.
    So what i did:
    <ul>
    <li>move P9_MEMOVELD to region FACTUUR, together with all the other db fields</li>
    <li>change the type to hidden</li>
    <li>set value protected to NO</li>
    <li>in the modal region create a new page item P9_MEMOVELD_POP, type textfield</li>
    <li>set the source to always use a page item as source, with source P9_MEMOVELD</li>
    <li>changed function updatememoveld:
    function updateMEMOVELD ()
       var get = new htmldb_Get(null, &APP_ID.,   
                        'APPLICATION_PROCESS=f_memo', 0);
       get.add('P9_MEMOVELD',$v('P9_MEMOVELD'));
       var gReturn= get.get();
       //alert(gReturn);
       //alert($v('P9_DATUM'));
      $s('P9_MEMOVELD',gReturn);
      alert($v('P9_MEMOVELD'));
      $s('P9_MEMOVELD_COPY',$v('P9_MEMOVELD')); 
      $s('P9_MEMOVELD',$v('P9_MEMOVELD_POP'));
      $('#ModalForm').dialog('close');
    }Whether you want or need the session state set is up to you, it depends on if you use this somewhere else dynamically on the page and thus would influence results there, but i don't think it will (it's a memo field...)</li>
    </ul>
    Extra remarks:
    <ul>
    <li>be careful with including jquery libraries! The standard libraries are included, yet you add previous versions too! (1.4.2) This might lead to issues...</li>
    <li>use your templates better. Why would you wrap a region in div tags? Change or add a region template to be div tags. You can then easily assign a static id to this region, and target it. This will save you from wrapping wrapped wrappers (cause that is what the generated code looks like in the end).</li>
    </ul>

  • Jquery Modal Dialog - passing item values

    Hi Everyone,
    I know...there are a lot of information about how to implement modal dialog form.....but I cannot find an answer on how to deal with my situation.
    What I am trying to achieve is to create a form in apex page, assign items to this form , add Jquery script to the page header where I am going to call this form into modal dialog ..... fill out items in modal dialog and when click on "Create" - insert value of the items into my table.
    Yes, this is common thing to do (like here http://shijesh.wordpress.com/2010/04/10/jquery-modal-form-in-apex-4 )....but I am trying to find a way where I don't need to create function for my "Crete" button which will call OnDemand Process. Anyways, here is what and how I am trying to do this and please correct me where I am wrong.
    *1.* I do have a table called "inventory_modal", ID column has a PK and trigger/sequence is there too.
    *2.* Do have a page with Form Region with data entry based on my table and Static ID "myModalForm".
    *3.* Do have items assigned to my From Region :
    :P23_ID (hidden):P23_INVENTORY_DATE (data picker)
    :P23_ASSET_ID (number)
    :P23_CONDITION (text field)
    :P23_INVENTORY_OWNER (text field)
    :P23_STATUS (text field)
    :P23_LOCATION (text field)
    :P23_COMMENTS (text field)>
    *4.* Do have a button called "Open Modal" to open my form in dialog window with redirect to URL: javascript:openForm();*5.* Do have an On Submit - After Computations and Validations process
    insert into inventory_modal  (id, inventory_date, asset_id, condition, inventory_owner, status, location, comments)
                   values (:P23_ID, to_date(:P23_INVENTORY_DATE,'&APP_DATETIME_FORMAT.'), :P23_ASSET_ID, :P23_CONDITION,
                              :P23_INVENTORY_OWNER, :P23_STATUS, :P23_LOCATION, :P23_COMMENTS); the process is Conditional with Request = Expression1 , where Expresseion1 is set to "CREATE".
    *6.* And here is HTML Header Jquery script where I am calling "myModalForm" form to open in dialog window and by selecting "Create" button passing "CREATE" vallue back to page which should fire my process to insert data:
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
       $('#myModalForm').dialog(
            modal : true ,
            autoOpen : false ,
            buttons  : {
                Cancel : function() {$(this).dialog("close")},
                Create : function() {$(this).dialog("close");doSubmit('CREATE')}
    function openForm()
        $('#myModalForm').dialog('open');
    So, and here is my question. I don't want to use any OnDemand Process, I would like dialog window to pass values to my regular procedure in my page. I had an assumption that Create : function() {$(this).dialog("close");doSubmit('CREATE')} will do the trick but apparently it doesn't. Is there any way to do it?
    Here is my testing page : http://apex.oracle.com/pls/apex/f?p=39330:23
    If you click on Open Modal, it will open my form in modal dialog window, on create it will send "CREATE" request to my procedure which will insert data into table....but it unfortunately it will insert only NULLS into my table (only ID column will have data as it has trigger/sequence). So, click Create and then refresh the page.
    Thanks

    Hi Jari,
    Thanks for your surrestion.
    I am not exactly sure on how to set ajax item session, does this looks ok for whatever I want to do?
    <script type="text/javascript">
    $( function() {
       $('#myModalForm').dialog(
            modal : true ,
            autoOpen : false ,
            buttons  : {
                Cancel : function() {$(this).dialog("close")},
                Create : function() {
                                              ajaxRequest.add('P23_ID',html_GetElement('P23_ID').value);
                                              ajaxRequest.add('P23_INVENTORY_DATE',html_GetElement('P23_INVENTORY_DATE').value);
                                              ajaxRequest.add('P23_ASSET_ID',html_GetElement('P23_ASSET_ID').value);
                                              ajaxRequest.add('P23_CONDITION',html_GetElement('P23_CONDITION').value);
                                              ajaxRequest.add('P23_INVENTORY_OWNER ',html_GetElement('P23_INVENTORY_OWNER ').value);
                                              ajaxRequest.add('P23_STATUS',html_GetElement('P23_STATUS').value);
                                              ajaxRequest.add('P23_LOCATION',html_GetElement('P23_LOCATION').value);
                                              ajaxRequest.add('P23_COMMENTS',html_GetElement('P23_COMMENTS').value);
                                              ajaxResult = ajaxRequest.get();
                                              $(this).dialog("close");
                                              doSubmit('CREATE');}
    function openForm()
        $('#myModalForm').dialog('open');
    </script>

  • How to call jquery function when i close modal dialog box ?

    Hello,
    I need to call one jquery function when I click on close button of modal dialog box.Can anyone please let me know how can I implement it ?
    Thanks,
    Dipti Chhatrapati

    Hi Dipti,
    If my understanding is correct, you are using SP Modal Dialog and want to track the close event of this dialog. Then you may use
    dialogReturnValueCallback parameter of Options variable. Follow is the code sample:
    function ShowModal() {
        ExecuteOrDelayUntilScriptLoaded(function () {
            var options = {
                url: 'page1.aspx',
                tite: 'Add Title',
                width: 800,
                height: 450,
                allowMaximize: true,
                showClose: true,
                dialogReturnValueCallback: scallback
            SP.UI.ModalDialog.showModalDialog(options);
        }, 'sp.js');
     function scallback(dialogResult, returnValue) {
          if (dialogResult == SP.UI.DialogResult.OK) {
               // call your Jquery method here...
    Thanks, Ram

  • [Forum FAQ]Open Calendar Overlay item In a Modal Dialog

    Introduction:
    In SharePoint Calendar, there is a feature called Calendar Overlay, it would display multiple Calendars items in one Calendar. However, when we click the items in Calendar Overlay, it would redirect to a new tab.
    In this article, I would make a simple demo about how to use the JQuery to make the Calendar Overlay item open in the same window, as known as, open in a modal dialog.
    Solution:
    We can add the following code in Calendar view page using SharePoint Designer or paste the code within a Content Edit Web Part.
    <script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(document).ready(function () {
    setInterval(function () {
    $("a[href*='DispForm.aspx']").each(function () {
    $(this).attr("onclick", "openDialog('" + $(this).text() + "','" + $(this).attr("href") + "')");
    $(this).attr("href", "javascript:void(0)");
    $(this).removeAttr("target");
    }, 900);
    function openDialog(title, url) {
    var options = {
    title: "Calendar - " + title,
    autoSize:true,
    url: url
    SP.UI.ModalDialog.showModalDialog(options);
    </script>
    Result:
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    How about "launch as dialog: yes" from advance settings. If I click on blue<any> color but not hyperlink, it will open in modal.
    [email protected]

  • Modal dialog not poping out of web page (ie 10 local settings?)

    I have an application that uses modal dialogs. These work on other computers in IE 10 and they will work on my Laptop windows 7 in firefox. The popup does not popup in IE10 on my windows 7 laptop (same one where firefox works fine).
    The code therefore appears not to be the problem but rather some local setting on my laptop. I have pasted a graphic to illustrate how the dialog window ends up in the same webpage below the initial web page.
    Any help with this issue would really be well received.
    Regards.

    Thanks I will give them a try, but have been told it may be better to try a jquery forum first thanks again.

  • JQuery modal form - Open another page

    Hi ,
    I have implemented a Jquery modal form in my application.
    I have a region and in the header I have the following code :
    <div id="transaction" title="Update transaction details" > . This is basically a form region and has around 35 items.
    I call this through the Jquery function
    $("transaction").dialog('open'); This works well for me.
    Now I want to move these items to a different page.
    How can I call this page as a modal dialog form ?
    I would like to do :
    $(NEW_PAGE).dialog('open') // NEW PAGE can be an URL to the new page ?
    How I can achieve this functionality ?
    Thanks,
    Dippy

    create an html no template region:
    add a html frame into source
    <frame id ="eventreg" src="f?p=&APP_ID.:your application id:&APP_SESSION.::NO:your page id:your parametere:&your parameter value." height="100%" width="100%" frameborder="0"></iframe>
    region header section
    <div id="yourdivid">
    region footer section
    </div>
    page header add the javascript
    $(document).ready(function(){
    $("#eventRegUpd").dialog({bgiframe: true,
                               width: 775,
                                     height: 525, 
                                     autoOpen: false, 
                                     modal: true                                 });
    hope this will help you
    regards

  • Implement jQuery modal form

    Hi,
    For a long time I am trying to find anything related to implementation of modal popup windows into Apex and so far no luck.
    Here is a link:
    [http://jqueryui.com/demos/dialog/#modal-form]
    and that is close to whatever I want to get. I have a page with lots of items and buttons, by clicking on one of the buttons I want modal window to popup and value from Parent Page (stored in hiden item) passed to modal window. In modal window I want to enter some data and by clicking "submit" data will go to the table and window shold be closed after that. In the same time I need Parent Page to get just entered data from modal (or just simply be refreshed)............ so it is all just basic stuff of popups and modals.....but I can not get this working.
    Anyone has done it before? Any resuls?
    Thanks a lot

    Hi All,
    I have outlined the steps to achieve the modal form below ......
    Include the below in your page template header section :
    Latest Jquery JS , ui.core.js ,ui.dialog.js,
    ui.draggable.js,ui.resizable.js // optional
    (You can download these JS files from the Jquery website)
    1) Create a Region with the items you wish to see in the modal dialog form
    2) Place the following in the region header section
    <div id="dialog" title"Create New User"> 3)In the region footer add
    </div>Add the following Javascript in your page template :
    <script>
    $(document).ready(function(){
    $("#dialog").dialog({
    bgiframe: true,
    autoOpen: false,    // hides the window by default and you will use function $("#dialog").dialog('open'); to open it
    height: 300,
    modal: true
    </script>For the Create button to open the dialog, call a javascript fucntion :
    function f_show_dialog()
    $("#dialog").dialog('open');
    }For the Modal form Submit button which inserts a row :
    function f_insert_row()
    doSubmit('SUBMIT');
    Create a Pl/sql Process that executes with the condition
    Request=expression1 where expression1 is SUBMIT
    Include a branch to the same page for this SUBMIT button.
    Phew ! Hope this was helpful.I will try to put an example on OTN soon....
    Thanks,
    Dippy
    Edited by: Dippy on Feb 19, 2010 9:45 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • SharePoint Modal Dialog Resizing

    Hi,
       I need set a functionality of modal resizing dialog in SharePoint UI. So if user get such dialog it should be possible to resize this one in runtime in right bottom corner. Is it possible in SharePoint modal dialog?
    Example of modal dialog in Sharepoint
    here
    Thanx for any info.

    Hi CaMeL023,
    According to your description, my understanding is that you want to resize SharePoint Modal Dialog.
    Per my knowledge, using JQuery seems to be the only available method to resize SharePoint Modal Dialog.
    Here are some similar posts for you to take a look at:
    http://blog.collabware.com/2013/03/22/tips-tricks-sharepoint-2013-modal-dialogs/
    http://chadschroeder.blogspot.jp/2012/10/sharepoint-2010-easy-dynamic-resize-of.html
    http://technical-experts.blogspot.jp/2013/01/resize-sharepoint-modal-dialog-using.html
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Extracting Modal Dialog - P-track application

    Hi,
    I want to use the modal dialog as found in the P-Tack application (page 200 when you click on contribute status button)
    http://apex.oracle.com/pls/apex/f?p=73267:200: (test/test)
    The current Modal Dialog in theme 26 does not work in IE 7. Tried doing Jquery Modal by creating a region but running into all sorts of trouble.
    I know one can export a theme, how would I extract the region template from here? Couldn't see that option anywhere.
    Any direction appreciated. Cheers.

    My Workaround to make good of current theme 26 Modal in IE 7:
    1) Add the following code in HTML header:
    <script type="text/javascript">
    function openModal3(p_div_id)
    // added - ensures user can open one modal at a time, so one opens, existing one closes
    closeModal();
         //gBackground.fadeIn(100); --> commented out
         gLightbox = jQuery('#' + p_div_id);
         gLightbox.addClass('modalOn');
    </script>and call this instead of openModal().
    its the fadeIn() function that causes issues in IE 7. However this is what makes the modal dialog dissapear when you click on any area of the background. So by commenting out, you will need to add a button to call "closeModal()" to close the Modal dialog.
    Still figuring out how to close it by clicking on the background.
    Edited by: William Wallace on 30/05/2013 21:38

  • How do I set (or auto populate) the value of a modal dialog field using javascript?

    I have a Modal Dialog on my SharePoint 2010 page the following fields: Your Name, Subject, Priority, Message. 
    It links to a list I have on the site. The second field, Subject, I want to auto populate it when the window opens, so the user can leave it as is or modify the subject. I want to set the field value using javascript. 
    I've tried setting the field with this code:
    document.getElementById('Subject').value = "Test";
    and also, this:
    setFieldValue('Subject','My custom value');
    Neither work. 
    How do I set the value of the subject field when the user first opens the dialog using javascript?
    Please help.

    I am sure, you are looking at default field value of a list column(single line) in a modal window, if so please try below code
    <script src="https://code.jquery.com/jquery-2.1.0.min.js" type="text/javascript" abp="397"></script><script type="text/javascript" abp="398">
    $(document).ready(function(){
    $('input[name*="Subject"]').val("Test");
    </script>​​​​​​
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • GUI hangs after it fail to pop up a modal dialog

    Hi everyone! I have a swing application that will pop up a log off confirm dialog (modal) when the user click on the "log off" button. It works fine for about 8 hours. Then when I click on the "log off" button, the dialog never pop up and the GUI is freezed, which means it does not react to user mouse click anymore, like a hidden modal dialog is in front. But actually there is no hidden dialog.
    At the same time, my windows XP freeze also. I cannot even open a folder. Then I kill the winrunner, and the XP is able to open a folder, but my GUI is still freeze. No exception behind and all threads are running. I can use some test script to control the GUI, but somehow it just never react to user click.
    Does anyone encounter the same problem and know the possible reason?
    Thanks!

    Hi motes_19:
    I have noteiced this as well in an application that I have created...however, my app doesn't freeze and the OS still runs (Win 2000). I suspect that your problem might be that you aren using the SwingUtilities.invokedLater() or SwingUtilities.invokeAndWait() methods to update your GUI. I am using them and still having some intermitten problems. Hope this helps you...if you have a solution for me, let me know.
    EH

  • Is there a fix for modal dialogs opening behind palettes -cs6 -osx 10.6.8

    Is there a fix for modal dialogs open behind palettes in
    Photoshop cs6 13.0 (createive cloud update) + OSX 10.6.8 Snow Leopard on MacBook Pro? 
    ( I am using 2 monitors where the second monitor is set to be the menu display.  cs4 does not exhibit this bug. )
    Toggling the Application Frame off improves the hiding 'feature' but this does not include the desired continuous floating in front of palettes in all circumstances.
    An example is Blending Options, then chose Stroke, then chose the Color Picker.  After clicking OK, the Blending Options dialog now sits behind the palettes.  One trick is to click on another app, then back to cs6 to force a window redraw.
    It sure would help me if this could be solved.  I am preparing educational videos and this display bug makes things very troublesome.
    Thanks for any help.  If I find a solution, I will post to this thread so everyone can benefit.

    The setting for the graphics check box Does Not make a difference.  If I have a new document window open, then add a layer, then open the blending options > drop shadow > edit the color > the chooser dialog opens, and immediately both dialog windows drop behind the palettes AND any document windows.
    The same behavior for the Preferences dialog > guides > color.
    The quick workaround is to click another app, then back to CS6.  A real pain, of course.
    It is only a factor when opening a second (child) dialog box.
    Other CS6 apps do work correctly (eg. FW AE)
    I have yet to get a handle on this.  Mac OSX 10.6.8    CS6 13.0  x64
    Thanks for your replies, and the long reply time for me was a vaction away from the office.

  • How to remove the default icons from the toolbar of modal dialog box screen

    Hello Friends,
    Iam calling a screen from function module using CALL SCREEN statement.
    The screen is of type Modal Dialog Box. I created some input fields and buttons in the screen. When the screen is displayed, I can see the tool bar at the bottom along with the input fields and buttons in the screen.
    These icons are Continue(Enter), Check, Cancel. How can I supress this??
    I mean in my screeen I want only my input fields and buttons but not the default toolbar. How to do that?
    Regards,
    Raju

    Hi Raju,
    Try this...
    First try to capture the F-codes of ur button apppearing on the dialog box and then exclude it from the PF-status by passing it to itab.
    types: begin of tab_type,
            fcode like rsmpe-func,
           end of tab_type.
    data: tab type standard table of tab_type with
                   non-unique default key initial size 10,
          wa_tab type tab_type.
    clear tab.
    move 'DELE' to wa_tab-fcode.
    append wa_tab to tab.
    move 'PRIN' to wa_tab-fcode.
    append wa_tab to tab.
    set pf-status 'STA3' excluding tab.
    Cheers,
    Simha.
    Reward all the helpful answers..

  • Skillbuilders modal dialog - condition for parent page dialog

    Hi
    When using this awesome plugin, I have a dynamic action on my calling page that deals with the selection from the dialog.
    It uses
    Select type:DOM Object
    DOM Object: document
    Condition: javascript expression
    ($v('P110_PROD_SEARCH') == 'BLAH')
    where the js expression is making sure I run the correct dynamic action, particularly when I have a few buttons on the page invoking different variations of the modal dialog.
    My first action is some javascript that interrogates the value of
    this.data.modalPageCloseValue
    this helps me make decisions in later actions on whether to run some pl/sql, for instance
    In light of a recent question of mine regarding a potential APEX bug (Display item with HTML affected by dynamic action and since we can't put conditions on actions - I was wondering if I could incorporate something into my dynamic action condition to stop the entire dynamic action from executing if modalPageCloseValue is null - but it seems to be out of scope?
    Scott

    Scott,
    You're current condition is:
    $v('P110_PROD_SEARCH') == 'BLAH'Just change that to:
    $v('P110_PROD_SEARCH') == 'BLAH' && this.data.modalPageCloseValueRegards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/
    twitter: https://twitter.com/dmcghan

Maybe you are looking for

  • Music is on my iPod touch 1G but does not show up in the Music App

    Been having this problem the last week. I synced my iPod before I went to bed, grabbed it and headed off to work on Tuesday. Once I got to work I went to use my iPod and when I opened the Music App a screen popped up saying "Updating Library...This m

  • Connection between Windows XP & Mac OS X very slow

    Hi, I have a custom server running on a Windows XP SP2, using jre1.6.0_01. When I connect to this server with a client running on another Windows OS, the ServerSocket.accept() method returns successfully & rapidly. However, when the same client is ru

  • My software will not let me "cut" selected audio

    I am running windows 8...Lenovo computer...plenty of disk space etc. I used the following activation code to install Adobe Audio 3.0 on this computer. -------------------- [removed] Installation process went fine...but when I open up a file to edit,.

  • Call transaction method in back ground Processing?

    HI Friends, I am working on interface program to post documents of 309 movement type into MIGO transaction . my program is executing succesfully when i am processing  in fore ground. but when i am processing in background it is giving error . can any

  • CALL_FUNCTION_NOT_FOUND  with CX_SY_DYN_CALL_ILLEGAL_FUNC exception.

    The function module "ZPOPUP_WITH_TABLE_DISPLAY" was called, but cannot be found in the Function Library. An exception occurred. This exception is dealt with in more detail below . The exception, which is assigned to the class 'CX_SY_DYN_CALL_ILLEGAL_