please help guys 😊
Sent from Windows Mail
From: ronald diao
Sent: ‎Thursday‎, ‎July‎ ‎31‎, ‎2014 ‎10‎:‎54‎ ‎AM
To: dev@velocity.apache.org
day is a hashmap which consist of list. one of the list is day with values
Monday, Tuesday, Wednesday, Thursday, Friday
ERROR 2014-07-31 1
day is a hashmap which consist of list. one of the list is day with values
Monday, Tuesday, Wednesday, Thursday, Friday
ERROR 2014-07-31 10:50:03,343 [http-nio-8080-exec-2]
org.apache.velocity.app.VelocityEngine - Exception in macro #springBind called
at org/springframework/web/servlet/view/
What does the body of the stack trace show? Where is the exception coming
from?
On Wednesday, July 30, 2014, ronald diao wrote:
> my code
>
>
>
> #springFormSingleSelect($day.name $day "")
>
>
> displays a dropdown list but the dropdown displays all the days in one
> selection(should be displa
my code
#springFormSingleSelect($day.name $day "")
displays a dropdown list but the dropdown displays all the days in one
selection(should be displayed separately…user should choose between days) …
i tried this
#foreach($name in $day.name)
#springFormSingleSelect($name $day "")
#end