Tom McCobb wrote:

I am having the same nagging problem in JBoss3.2.3/Tomcat4.1.

<c:forEach var="costs" value="${DetailForm.detail.costs}"
varStatus="itemIdx" >

        <c:out value="${itemIdx.count}" />   ---this works just fine

        <html:hidden  property="itemIdx" value="${<c:out
value='${itemIdx.count}'/>"/>

The last line always renders as '<c:out value="${itemIdx.count}"/>' both in
the Form property and the request parameter.

I checked versions, etc. as detailed earlier in this thread. I'm stumped.

I'm using JBoss3.2 and Tomcat4.1 and do not have these problems so there is a way to fix this:)


First off, have you tried the html-el tag and then used:

<html-el:hidden property="itemIdx" value="${itemIdx.count}'/>

(Of course the above could be html:hidden assuming you are defining the html tag definition to use the html-el tld )

That DEFINITELY should work.

--
Rick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to