How can I format the date in the specified format, which comes from db to <g: select>
4 answers
Grails has a formatDate tag that you can use as a method call in this situation. Example:
value="${formatDate(format:'mm/dd/yyyy', date: yourDate)}" />
+1