cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with portal page refresh

Former Member
0 Kudos

Hi All,

I have a portal page which displays a table with 2 editable field columns and one save button. This is basically a dynpage application.

Behaviour of this portal page:

Ex: Following are the 2 editable columns: say increase amt and increase percentage.

The end user logs in, enters the increase amt manually, presses enter. Page gets refreshed and corresponding increase percentage is calculated and displayed in the 2 nd column of the table. So everytime if an increase amt is entered, pressed enter, the corresponding increase percentage is calculated. When this is repeated for multiple times also, page is refreshed and percentage is displayed. This is working fine in DEV portal.

In QA portal, only one time the page is refreshed and percentage is displayed. Second time or consecutive times, when amt is entered and pressed enter, page is not refreshed and hence percentage is not displayed. But when you logoff and log in, you could see the percentage. The problem here is only with the page refreshing.

This application is not browser dependent. But the things which are working fine in DEV portal are not working in QA portal.

Note: Recently patches were put on QA portal.

So cleared the portal cache - No luck

Restarted the server - No luck.

What could be the issue?

Hope I am clear.

Please suggest.

Regards,

Subashini.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Subashini,

did you try to transport the application as well as iview to QA portal again from Dev portal

Thanks

Bala Duvvuri

Former Member
0 Kudos

Hi,

We have transported all the iviews, pages. All other functionalities are working fine except the page refresh thing for second and consecutive entries.

Are we missing any other configuration or its because of the patch recently put on QA?

Please suggest.

Regards,

Subashini.

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi All,

The problem is because of the patch applied on the portal. Thanks for all your instant replies.

Regards,

Subashini.

Former Member
0 Kudos

Hi Subhashini,

In your Dyn page, on click of SAVE button event try adding the below code for refreshing the Portal page.

refreshPage() ;

function refreshPage() {

try {

frameworkSupport.refreshContentArea();

} catch(e) {

document.location.reload()

}

}

Redeploy and check. I think it should work.

Regards,

Santhosh

Former Member
0 Kudos

Hi All,

Can anyone please suggest something for this portal page refresh problem as this is our showstopper.

Hope I am clear with my issue, if not please let me know.

Regards,

Subashini.

Former Member
0 Kudos

Hi Subshani,

you also need to carry the permission for this application to Dev to Qt system.

for example : if u use permission everyone in Dev you also need to assign the same to QT.

Points if helps,

-

VIjai

Former Member
0 Kudos

Hi,

Do you mean assigning the corresponding role?

Say for ex: manager role?

The end user has got the permission to view test all the functionalities. The problem is only with page refresh thing.

Please suggest.

Regards,

Subashini.