Hi,
I'm using the nested taglib like this:
<nested:iterate id="diplomarbeit" property="diplomarbeiten" indexId="daId">
...
<nested:iterate id="schuelerDiplomarbeit" property="schuelerDiplomarbeiten" indexId="index">
<nested:text property="note" />
....
<nested:checkbox name="diplomarbeit" property="toChange" /><%-- problem! --%>
</nested:iterate>
</nested:iterate>
Everything works fine with the <nested:text>-tag (which gives me something like diplomarbeiten[0].schuelerDiplomarbeiten[0].note and so on),
but the checkbox does not work ... I want to bind it to diplomarbeit[0].toChange, but unfortunately, they rendered HTML checkbox looks like this:
<input type="checkbox" name="toChange" value="on" />
thus, it can't be mapped backed anymore. I tried adding the 'indexed="true"' attribute as well, but the index it bind's to is the inner one (index), whereas
I'd need 'daId'.
Any ideas how I could solve this?
Thanks in advance, Simon
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]