Tutuban to Bicutan
0605
0655
0725
0820
1205
1535
1650
1720
1735
Bicutan to Tutuban
0605
0650
0745
0815
0905
1250
1620
1735
1810
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.