jsp - Use of Struts in html select -


i have problem select , use of struts. if select , change page, when turn page, select has not right selection. why?

<select id="select" name="polizza">     <option value=""   <s:if test='polizza == ""'  >selected="selected"</s:if> ></option>     <option value="01" <s:if test='polizza == "01"'>selected="selected"</s:if> >figlio/figlia</option>     <option value="02" <s:if test='polizza == "02"'>selected="selected"</s:if> >genitore</option>     <option value="03" <s:if test='polizza == "03"'>selected="selected"</s:if> >coniuge/convivente</option>     <option value="04" <s:if test='polizza == "04"'>selected="selected"</s:if> >nipote</option>     <option value="05" <s:if test='polizza == "05"'>selected="selected"</s:if> >legame affettivo</option>     <option value="10" <s:if test='polizza == "10"'>selected="selected"</s:if> >altro</option> </select> 

i use see if valu correct , correct. example if select first value , change page, when come value 01. function:

<label id="ciao">     <s:property value="polizza"/> </label> 

when print attribute <s:property /> tag, produce plain text in generated html page, , hence value won't sent form submission.

if send polizza first page, through second action, second page, , want resubmit second page first action (or somewhere else), need use hidden element, follows:

<label id="ciao">     <s:property value="polizza"/>     <s:hidden    name="polizza"/> </label> 

p.s: consider using <s:select> tag selects, better, cleaner, faster code.


that said, if attribute correctly passed action , <s:select/>, selection wrong, means there javascript changing selection @ runtime, after <s:select/> tag rendered element's html.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -