-1

A Lotus notes doucment is oepned in browser from a notes view. This is opened using xpage and after save and exit like to automatically refresh uiview to show the back end changes.

Any ideas how to accomplish this?

The application is running on 8.5.2 client and only few documents are opened in browser.

lense
  • 55
  • 2
  • 10

2 Answers2

0

Your Save action could call (backend) view.refresh() method, but it is not recommended. This can lead to serious performance problems (semaphore locks on all http threads).

Frantisek Kossuth
  • 3,524
  • 2
  • 23
  • 42
  • Need to refresh front end view (uiview) from where the xpage was opened in browser, so user see the changes in the view without having to press F9. – lense Jan 24 '13 at 20:15
0

As sais in one of your comments it is opened by a new tab. In fact that makes it a bit easier. When you can create a client side action that mimics the opening of the document by just calling window.open() you can call its parent ( the page you're window.open originated from) to do something.

something like window.opener.document.getElementById() ( you have to google yourself for the correct syntax ).

This would give you the opportunity to call a partialrefresh on your view just before the child browser window is being closed.

jjtbsomhorst
  • 1,667
  • 11
  • 28