Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to do something similar in Play and Java:

<select id="birthyear" name="birthyear">
<option value="2007">2007</option>
<option value="2006">2006</option>
<option value="2005">2005</option>
<option value="2004">2004</option>
<option value="2003">2003</option>
<option value="2002">2002</option>
<option value="2001">2001</option>
<option value="2000">2000</option>
<option value="1999">1999</option>
<option value="1998">1998</option>
<option value="1997">1997</option>
<option value="1996">1996</option>
</select>

However I want to be able to give it a start year and an end year and build the select list dynamically.

I ame across this but in Scala and Play, but I'm not sure how to accomplish this in Java/Play?

UPDATE: Read the documentation as provided in the answer and also checked the sample projects that came installed with Play and used the following

<div>
     Select birth year of  
     #{select 'yob', items:2012..1900, value:5, id:'select3' /}
   </div>
share|improve this question

2 Answers

up vote 7 down vote accepted

Playframework has built in tag #{select} to achive this.

Please go thru the below link, It will help you,

http://www.playframework.org/documentation/1.1/tags#select

share|improve this answer

Did you try this ?

<select id="birthyear" name="birthyear">
#{list 2007..1996}
<option value="${_}>${_}</option>
#{/list}
</select>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.