How do I remove all leading and trailing whitespace in all user inputs of a form automatically?
Created Feb 7, 2006
WarnerJan Veldhuis In the setter for myField of the form: this.myField = ( someParameter != null ? someParameter.trim() : null);
Created Feb 7, 2006