RE: nested loops with jstl

2005-03-06 Thread Karr, David
We can see the problem by reading the error message. You're iterating through a HashMap, which gives you "Entry" objects for each iteration. The only objects directly available to an "Entry" object are the "key" and "value". So, change "${currentQuestion.answerOptions}" to "${currentQuestion.valu

nested loops with jstl

2005-03-05 Thread Stephen Souness
Hi all, I have a basic survey creation form which is backed by three levels of form bean - survey -> questions -> answerOptions. Using the following JSTL gets me this exception: javax.servlet.jsp.el.ELException: Unable to find a value for "answerOptions" in object of class "java.util.HashMap$Ent