How can I lock a field if it is valid after a user type? any idea?
Subject: How can I lock a field if it is valid?
Are you trying to do this in the web or in the client?
If it’s on the web, you could use JavaScript in the onBlur event of the field. This could call a function to check if the entry is valid, and if it is, then it can disable the field. The only problem is of course that this might annoy your users a little!
You can achieve the same using these events in the notes client, although I’d use LotusScript rather than JavaScript, as certain JS functions aren’t available on the client and it can end up being a right pain to code, whereas at least LS is native.