Hello,
here is the situation:
we have an app. user fills in data on several sections. data is numeric. currently we have js page that runs validation on the pages. Some sections require cross validations with other sections. For example: Sec2Field1 must match Sec3Field3. and so on. Some users to avoid annoying error message, turn off javascrip and complete their data entry and submit it. the problem is that data entered is invalid bacause they bypassed those required validations. as far as i can see, javascript is the best way to do as user is informed instantly that invalid data is entered. The client we developed the app for mentioned that some institutions turn off javascript to avoid trojans and such. Can anyone advised on how to ensure that user submits valid data even if javascript is turned off. i thought about running serverside on Submit (end of data entry), but this maybe an overhead. any suggestions?
tahnk you
here is the situation:
we have an app. user fills in data on several sections. data is numeric. currently we have js page that runs validation on the pages. Some sections require cross validations with other sections. For example: Sec2Field1 must match Sec3Field3. and so on. Some users to avoid annoying error message, turn off javascrip and complete their data entry and submit it. the problem is that data entered is invalid bacause they bypassed those required validations. as far as i can see, javascript is the best way to do as user is informed instantly that invalid data is entered. The client we developed the app for mentioned that some institutions turn off javascript to avoid trojans and such. Can anyone advised on how to ensure that user submits valid data even if javascript is turned off. i thought about running serverside on Submit (end of data entry), but this maybe an overhead. any suggestions?
tahnk you