[jQuery] (validate) Using text input arrays do not work

[jQuery] (validate) Using text input arrays do not work


If you have the same 'name' for an input type, the error is only shown
for the first one.
For example, take the dynamic forms example:
http://jquery.bassistance.de/validate/demo/dynamic-totals.html
change the template it uses for adding rows and change it so the name
of the input does not use the format {0} argument:
<input size='4' class="quantity" min="1" id="item-quantity-{0}"
name="item-quantity" />
This should work as all the id's are unique and the names will cause
an array to be formed.
While the framework still attempts to validate - the error is only
shown on the first text box. It should be shown on all items. If you
correct the first item, the error will then be shown on the second
item (if you hit submit) and so on.
Please advise.