This content has been marked as final.
Show 2 replies
-
1. Re: Verifying a field by having the user enter data twice
jnicholas330 Nov 6, 2014 3:58 PM (in response to rickstsx04)You can fail the validation on one or both of the fields is the user's input does not match. For example, override the second account number field's validate event and enter something like this
if(!firstaccountNumber.isNull && !this.isNull && firstaccountNumber.rawValue != this.rawValue){ false; }This will cause the second field to fail its validations if both fields are filled in and the contents do not match.
-
2. Re: Verifying a field by having the user enter data twice
rickstsx04 Nov 7, 2014 8:18 AM (in response to jnicholas330)This worked! Thanks so much! I just thought that it would be best to prevent the field to allow pasted data. Is there a way to do this?

