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