After some advice whether my interpretation is correct for the following scenario:
Simple screen which creates/updates (2 separate views - create view and update view) a user record.
Screen contains 3 fields: Name, Telephone Number, National Insurance number (NI Number)
We have validation on: phone number (to make sure it is correct format) NI Number (to make sure it is correct format)
There is a Unique Index on NI Number in the database
This is my understanding - totally open to people telling me this is wrong or there is a better way...
So, if a new record is entered, we need to check the NI number is unique - thus we have to POST and run the server side validation - this means that the Javascript validation is irrelevant - and so all the validation has to happen on the server side.
If the record is retrieved from the database and then updated, the client side validation is relevant if the NI number is not updated.
So, I do not need any client side validation routines for the Create view as I always need to make sure the NI Number is unique, whereas, for the update view I do need the client side validation routines as the NI number may not be updated but we will still want to validate the other fields (where neccessary) client side so as to minimise network traffic.
Am I right?
Thanks