e.g.
_ _ _ password _ _ _ will be trimmed to password
_ _ _ pass_word _ _ _ will be accepted and be trimmed to pass_word
The password field accepts spaces after all.
class Student {Without touching the GSPs, the drop-down list will show the first names and last names of the students and not the default package.domain : id (e.g. Student : 1)
String firstName
String lastName
String toString(){
StringBuilder sb = new StringBuilder()
sb.append(firstName)
sb.append(" ")
sb.append(lastName)
return sb.toString()
}
}
optionValue="firstName"will show only the first names of the students. If you want to show the first names and last names, you may opt to use
optionValue="${{it.firstName + ' ' + it.lastName}}"Note that character/s can be inserted for each iteration inside single quotes.