in web application, i have a Dialoglist field in the middle of the form , this field Required to check the property “Refesh field on Keywords change” , when i am selecting any value then its refreshing as desired but the problem is that i am going back to the top of the form after selecting value, i want to be remain at that field only… how to handle this…
What happens is that Lotus Notes is reloading the whole page, because of the “refresh fields” - that’s why you end up at the top of the page.
There are some solutions/work-arounds to this that I used so far :
One is to replace the “Refesh field on Keywords change” functionality by a JavaScript that is executed by the “onChange”-event of the field.
Another one is to split very long documents into tabs and store the actual tab number somewhere, so the user is just thrown back to the top of the current tab on reload instead of getting thrown to the top of the whole document.
Subject: RE: Refreshing problem in Web Application
The same Applicatin is used for both NotesClient and WebClient , so if i remove the “Refresh field on keyword” then it will not work in client , then i have to write separate code for this and i have also tested on change event as per your suggesting , but it doesn’t have any effect …