|
|
I have a problem that since moving from Spring 2.0 to Spring 2.5 form tags that render collections are working slightly differently.
E.g.Code:
lt;form:input path=quot;myCollection[${index}].myValuequot; /gt;
previously rendered as: Code:
lt;select id=quot;myCollection[0].myValuequot; name=quot;myCollection[0].myValuequot;
and is now rendering:Code:
lt;select id=quot;myCollection0.myValuequot; name=quot;myCollection[0].myValuequot;
Notice the lack of square brackets in the id attribute. This may not seem like much but we have a lot of javascript that relies on it rendering the first way!
Can anybody shed any light on why this is happening please? |
|