Create Text Box Dynamically

2010-10-09 Thread vinodh r
Hi, I want to create 'n' text box dynamically, the 'n' should comes from database Whether 'n' should be 3 or 4 or 12 it will be vary dynamically and decided by the end user. Is it possible to create 'n' text Box dynamically or at run time with struts2, Also how text box can be accessed

Re: Create Text Box Dynamically

2010-10-09 Thread Li Ying
Hi I think you can use tags looks like this: s:iterator var=counter begin=1 end={n} s:textfield name=data / /s:iterator to generate 'n' text box dynamically. The html code should be: input type=text name=data repeats 'n' times. When user input text in these text boxes and submit the form,

Re: Create Text Box Dynamically

2010-10-09 Thread Dave Newton
Better to use a Collection, but may not matter much. Also, if order needs to be guaranteed, use index notation (square brackets along with an index). If you need to add the text boxes dynamically (via JavaScript) just create DOM elements that match the HTML generated by the S2 tags. Dave On