in my Webapplication-Test für Migration 5.0.11 to 6.5.3 I`ve got a undesirable Document-Refresh.
My Problem: I complete a new Document in a Web-Application. When I forget to complete a mandatory field, I get a Messagebox “Pleace complete the mandatory fields …”. Then I press OK.
Now the document lose all values, that I write so far. But the document should keep all values.
Probably it`s a problem with refreshing of documents or with my Web-Browser (IE 6.0.2800.1106)
It sounds like you are doing server side (agent) validation. You should try and use Javascript for your validation. This allows the field values to be tested without doing the round trip to the server and back to the client.
Subject: RE: Undesirable Document-Refresh in R 6.5.3
Both is better – JS for user convenience, speed and light weight, server-side for actual data validation using server settings. Browser validation is too easily avoided to be the only line of defence, but yes, it will generally improve overall performance and avoid unwanted data changes (server-side refreshes can be murder).