Oracle Apex partial page refresh problem in IE

Hi All,
I'm using a button to refresh a region by enabling ppr .
On click of the button , m redirecting to url and the url target is as follows
javascript:jQuery('#VH_SCROLL_EMP88').trigger('apexrefresh');
Its working fine in firefox and chrome but not in internet explorer. When I click the button in IE I just get the following
[object Object] in the page
When I click back button of browser I'm getting the original page
Please help me to understand and rectify this
Regards
Sasidharan

a) What version of IE are you using, this probably factors greatly in this question
b) If you want to partially page refresh a region, it looks like you're using a sledgehammer when all you need is your clicking finger
- can you create a dynamic action for your button that applies a 'refresh' action to your selected region

Similar Messages

  • (Classic) Report losing pagination on partial page refresh - APEX feature request

    I have a page with both an Interactive Report and some classic Report regions.
    Based on user updates, there are many occasions where I need to do a partial page refresh.
    Thanks to plugin http://www.apex-plugin.com/oracle-apex-plugins/dynamic-action-plugin/refresh-interactive-report-1.0_361.html
    I'm able to refresh my IR, but not my classic report (unless I do a submit of the whole page) without losing pagination.
    Request: Will a Dynamic action 'Refresh without losing pagination' be part of future apex versions?
    Now, in apex 4.2, is there another work around available for classic reports?
    (I use 'submit page' now as action, but it's at least a second slower as a partial refresh, and because I need it on every user update, this second becomes a big addition to user frustration).
    Thanks, JP

    Here is the solution for your problem:
    https://apex.oracle.com/pls/apex/f?p=31517:243
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    https://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494

  • Partial page refresh is not working in APEX 4.0

    Hi All,
    I have a report region in my application,I have selected the following properties for the region,
    Pagination scheme - Row ranges X To Y (with next and previous links)
    Enable partial page refresh - yes
    Display position - bottom -right
    Their is an arrow mark link(next /previous) in the right bottom corner,when i click on that ,the region is displaying the next 15 rows, but the region is not getting refresh,the scroll bars are al went off if i click the previous/next link.
    After that i refreshed the page by clicking F5 ,scroll bar is appearing now.
    In the region header and footer i have added this code,
    <div style="overflow:auto;">
    </div>for scroll bar
    Please some body help me to fix this issue..
    Thanks & Regards,
    Ramya.
    Edited by: Ramya on Apr 15, 2012 10:42 PM

    Hi All,
    I fixed this issue.
    I used Skillbuilders modal popup plugin, to open the form page as popup when i edit the record.To implement this plugin i have already created dynamic action for edit ,create and autoclose the popup.
    In the dynamic action i changed the EVENT SCOPE from BINT To LIVE and tested the application.Now its working fine.
    I can able to edit the record after i hit the next/previous pagination link .
    Thanks ,
    Ramya.

  • Event handler when using partial page refresh ?

    Hi
    I have a calendar, which uses partial page refresh. The problem is how to make javascript wait until the calendar has loaded and then do some updates on the calendar (after the user has pressed the next button that runs apex.widget.calendar.ajax_calendar('S','next');, for example ). I thought I could add "onreadystatechange" (or onload) event handler to the calendar like this: onreadystatechange="checkState()", where the function would check the state and if ready then do the updates. This doesn't work. Could somebody please tell me why not ?
    Tiina

    Hi,
    It seems that ajax calendar missing event apexafterrefresh.
    I do not know is this "bug" or just feature.
    That event would be useful to your case , if I understand correct what you looking for.
    For workaround , you can over write original function by placing this to calendar region footer
    <script>
    apex.widget.calendar.ajax_calendar=function(p_calendar_type, p_calendar_action, p_calendar_date, p_calendar_end_date){
    var l_cal_type_field = $v('p_cal_type_field_id');
    var l_cal_date_field = $v('p_cal_date_field_id');
    var l_cal_end_date_field = $v('p_cal_end_date_field_id');
    var l_cal_id = $v('p_calendar_id');
    var l_calendar_region = 'calendar' + l_cal_id;
    if ( p_calendar_type != 'C' ){
      $s(l_cal_date_field,$v('p_calendar_date'));
    }else{
      if ( $v(l_cal_date_field) == '' ) {
       $s(l_cal_date_field,$v('p_calendar_date'));
      if ( $v(l_cal_end_date_field) == '' ) {
       $s(l_cal_end_date_field,$v('p_calendar_end_date'));
    // create and apex.ajax.widget object
    var a = new apex.ajax.widget('calendar',function(){
      /* start the return function */
      if(p.readyState == 1){
       document.body.style.cursor = "wait";
      }else if(p.readyState == 2){
      }else if(p.readyState == 3){
      }else if(p.readyState == 4){
       $x(l_calendar_region).innerHTML = p.responseText ;
       $s(l_cal_date_field,$v('p_calendar_date'));
       if (p_calendar_type == 'C') $s(l_cal_end_date_field,$v('p_calendar_end_date'));
       document.body.style.cursor = "";
      /* DO HERE THINGS AFTER CALENDAR REFRESH */
      }else{return false;}
    // code for next,previous and today
    if (p_calendar_type == 'S'){
      p_calendar_type = $v('p_calendar_type');
    }else{
      $s(l_cal_type_field,p_calendar_type);
    a.ajax.addParam('p_widget_mod',p_calendar_type);
    a.ajax.addParam('p_widget_action',p_calendar_action);
    a.ajax.addParam('x01',l_cal_id);
    var lDate = (!!p_calendar_date && p_calendar_date !== '')?p_calendar_date:$v(l_cal_date_field);
    if (p_calendar_type == 'C') {
      var lendDate = (!!p_calendar_end_date && p_calendar_end_date !== '')?p_calendar_end_date:$v(l_cal_end_date_field);
    a.ajax.add(l_cal_date_field,lDate);
    if (p_calendar_type == 'C') a.ajax.add(l_cal_end_date_field,lendDate);
    a.ajax.addParam('x02',lDate);
    if (p_calendar_type == 'C') a.ajax.addParam('x05',lendDate);
    a.ajax.add(l_cal_type_field,p_calendar_type);
    a._get();
    </script>Where I have comment *"do here things after calendar refresh"*, you can hook own scripts.
    Of course this is not best way, but might help you till ajax calendar support dynamic actions fully
    Regards,
    Jari
    Edited by: jarola on Oct 20, 2010 3:11 PM

  • Animated gif and page refresh problem

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

    Animated gif and page refresh problem
    Hi There,
    I'm trying to build a simple "Please wait......" screen using jsp and javascript.
    So far all is going well except that my animatate gif keeps refreshing everything the page is refresh.
    Is there a way the i can prevent the body of the page from refreshing?
    below is my sample code:
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <jsp:useBean id="StatusBean" class="com1.CandidateRelease" scope="session"/>
    <html>
    <script LANGUAGE="JavaScript">
    function refresh()
    <% if (StatusBean.isRunning()) { %>     
         //setTimeout("refresh()", 1000);
         setTimeout("location='status.jsf'", 1000);
    <% }else{%>
         window.location= "busStopAdmin.jsf";
    <%} %>
    </script>
    <head>
         <script LANGUAGE="JavaScript">     
              refresh();
         </script>     
    </head>
    <body>
         <img id="myImage" src="../img/ojp_wait.gif" alt="" width="151" height="36">
    </body>
    </html>

  • Partial page refresh in REQUEST scope

    Hi,
    I was going through the various example of partialTrigger.
    But in I am unable to find the example in where we can use the partialTrigger with having our backing bean into request scope. means Can we do partial page refresh without keeping our backing bean into session scope?
    Can we do partial page refresh across different fragments (different jsf fragment - jsff ) with having the our backing bean in a request scope?
    Is there any way that we can achieve this?
    Please can any one provide some input or help on this?
    Thank you in advance.
    - Kumar

    Hi,
    Can we do partial page refresh without keeping our backing bean into session scope?
    Yes, don't know how you get to this idea that you couldn't. You can use ADFFacesContext.getCurrentInstance().addPartialTarget(component)
    Can we do partial page refresh across different fragments (different jsf fragment - jsff ) with having the our backing bean in a request scope?
    You are posting a JDeveloper 11 question without saying it first. Also note that there is a JDeveloper 11 forum here on OTN. To answer the question, I don't think that you can do this and that instead you would use a region and contextual events to refresh the area
    Frank

  • POP LOV and Branching ( Partial page refresh)

    I have a POP LOV (Shows description and returns id). I want to change certain elements on the screen based on the user selection.
    It is not possible via POP LOV. I cannot use selection lov since the number of values returned is going to be very large.
    is it possible to achieve this functionality in any way using POP LOV ?
    Appreciate your help.
    Rgds

    Scott,
    Thanks for your input. I think I didn't frame my question correctly, sorry about that. I will describe further
    I want the page to refresh after a value is chosen using POP LOV. THis is required to hide/show certain elements on the screen and also to populate another Dependant LOV.
    For example, choosing country should populate dependant "city" or states lov. I have to achieve some functionality similar to this. I do not want to "Submit" the page, because I don't want to save anything at this point in time.
    So it would be partial page refresh (Similar to OA Framework) without submit.
    Rgds,
    Venkatesh
    Message was edited by:
    Venkatesh_pr

  • Partial Page Refresh - Text Box Update

    Hi,
    I have a page where there are numerous regions, each containing two or more text fields. I want these to update periodically using partial page refresh.
    I have got the partial page refresh working but my text fields are not being updated. How would I get them to update? I know I can't call a page process from javascript, only application processes.
    Cheers
    Simon

    Hi John,
    I think you'll need to create two dynamic actions. One of type PL/SQL block with null; as the source and enter the items to submit. The second is the Refresh Region Dynamic Action..
    Martin
    http://www.talkapex.com

  • Partial Page Refresh Samples

    Hi Guys,
    Where can I find some cases/page in HRMS 9.1, which leverage partial page refresh, a new features from PeopleTools 8.50?
    Thanks,

    Yes, this can be done in Ajax, now depends if you have worked on Ajax or not? You just need to intanciate XHR object, i.e. xml http request, call a custom jsp where you retrieve the values using jdbc, and update the OAF page.If you have not worked extensively on javascript using ajax features i would advice not to go via that route as you may not support it in future.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery

    Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery args.get_isPartialLoad().
    My page is loaded into a palcehold within the Ajax update panel within the current Masterpage, so page loadload doesn't occur. But if my Muse page can capture  the partial pageload then I can tell jquery to run the Muse formating routine.

    Jackie,  I am having the same issue and agree that it obscures our site analytics.
    I only have the "WebMarketing" subscription - so I cannot see how often people visit my site (unless I just dont know how to view that).  Here is a screen shot of how many different locations I have and how much it affects my site visitor count based on the other locations which seem "legit" because they have more page views than visits.
    I hope there is a way to fix or block this.

  • Calling Oracle Forms from ADF - refresh problem makes it unusable!

    Hi everybody!
    I'm using JDeveloper 11.1.1.4.0 and I need to call an Oracle form (Forms 10g) inside my ADF application. I did exactly what explained in the Oracle doc at this link
    http://www.oracle.com/technetwork/articles/adf/wilfred-adf-forms-099635.html
    and it works fine. I've put the code inside a region that is in a tab page of my ADF application. The problem is that EVERYTHING I do outside that form (changing tab page, pressing a button,...) makes the page refresh and my form resets (actually it's the applet that reloads).
    How can I avoid this? Is there any way to make the form stay alive even if ADF events trigger? As it is now launching a form inside ADF is completely useless.
    I posted this question also in the JDeveloper forum but nobody is answering so maybe here someone can help.
    Thanks in advance for any suggestion
    Roberto

    In Forms 11g, you can set the following parameter in the Forms Server's formsweb.cfg configuration file "legacy_lifecycle=true", which will prevent the applet restarting when the ADF pages are in between page loads. However, I dont know if this exists in 10g Forms. Give it a try.
    Thanks,
    Gavin

  • HP5610 printing partial page (intermittent problem)

    My HP5610 sometimes prints only  a partial page.  It begins printing, but about halfway through the page the print head simply continues to go back and forth in the same position.  It does not advance.  I have to cancel printing. 
    This is an intermittent problem.  Sometimes it prints the whole page.
    It has been a great machine and I hate to give it up.
    Anyone have an idea what the problem might be?

    Hi @Deb74 , and welcome to the HP Forums!
    I can see you're running into print issues.  I would like to help!
    Before we get started, I need a little info:
    Are you using Windows or Macintosh?
    Is it a 32-bit or a 64-bit system?
    Are you connected wireless, or via a USB cable?
    Are you able to make a copy without issues?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please let me know.  Thanks for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Partial page refresh

    Hi everybody,
    Well, I want to create a real-time region, like refreshing second per second. I found in this forum something about PPR templates.
    But what is this? How can I use this? Where I find this?
    I'm using the Apex 4.0.2 version.
    Thanks guys
    Raul

    Yes, this can be done in Ajax, now depends if you have worked on Ajax or not? You just need to intanciate XHR object, i.e. xml http request, call a custom jsp where you retrieve the values using jdbc, and update the OAF page.If you have not worked extensively on javascript using ajax features i would advice not to go via that route as you may not support it in future.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • About Default Framework Desktop Inner Page refresh Problem

    In the Default Framework's Destktop Inner Page's Detail Navigation , When I click a link , It's refresh whole Desktop Innerpage page.
    Now I not require refresh whole Desktop innerpage . I'm only require it's refresh content page.
    How solve this problem?
    Thanks.

    Hi Yanjun,
    The behavior of a lot of features depends of the framework. Please check first the framework comparison document:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3050a9ef-2848-2a10-1e93-bcc432c00c84
    Also check isolation method of IViews, mainly URL isolation method (it may help you):
    http://help.sap.com/saphelp_nw70/helpdata/en/97/0be13dc2fd605ae10000000a11405a/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/b5/8d977463334342be192228d2824fe1/content.htm
    Reward points if itu2019s helpful.

  • WebDypro Page refresh problem

    Hi Friends,
    I have a Layout viewset WebDynpro iView .
    When this iView is integrated and tested in Portal environment, one problem is faced.
    User clicks on Role> Workset>WebDynpro Page
    user tests the functionality and again clicks on Page link in order to see the pintail page screen, then this screen is not refreshed, the screen with previously entered values is displayed.
    How to refresh the WebDynpro iView Page screen on click of Page?

    Hai
    I have faced lot of problems for refreshing the page .
    but i solved it,use the following Code
    public static void wdDoModifyView(IPrivateTestView wdThis, IPrivateTestView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
        when you enter in this area
        declare firstTime=true;
        if(firstTime) {
         "if you use the Container first you destroy all     children like below syntax"
    container.destroyAllChildren();        
    view.resetView();"
    Regards
    Dhinakar

Maybe you are looking for

  • Cannot get rid of a tab in Access Manager

    I am trying to remove the "Federation" tab in the Access manager. I modified the amAdminConsole.xml file by commenting out the tab, as shown below, but it still does not go away. Any ideas on what I should be doing? I also tried removing the tab thro

  • Why do I get an error message when trying to publish animate deployment package?

    I continually get the following error message every time I try to publish an animate deployment package.  I have no idea what Poster3.png is.  There is no image in my file with that name.  I have tried saving my composition under a new name and it do

  • Greenwood Village Tax type 51

    Hi, We have enabled Tax Auth CO02 (Greenwood Village Colorado) in T5UTI and as per tax model it should calculate tax type 51 and 54. When  we run payroll and check USTAX, we can see that both tax types are being read in Tax Data in processing step bu

  • To find the "column value"  when clicked on Dynamic datatable

    I ahve done a dynamic table where the first row alone i ahve declared as command link.So when I click on the commadn link I need to get either column name or column count or rowdata.If I Get then I have some logic based on it to do. I have placed my

  • Added Record not in tablepage

    Hi (JHeadstart 9.0.4, Struts/JSP/Toplink) We have a tablepage with one empty row. We enter the details of a new record in the empty row and save. The transaction is completed successfully, the record is created in the database. However, the tablepage