Given this MyFaces Tomahawk 1.1.3
JSP code:
In the generated HTML, I get input fields with IDs like "valuesField[0]", "valuesField[1]", "valuesField[2]", etc. That works fine.
However, if instead of using <t:column> I am using <t:columns> (plural), I run into a problem.
Now in the first row I get input fields with IDs like "valuesField[0]", "valuesField[1]", "valuesField[2]", etc. In the second row I also get input fields with IDs like "valuesField[0]", "valuesField[1]", "valuesField[2]", etc. And in the third row I also get input fields with IDs like "valuesField[0]", "valuesField[1]", "valuesField[2]", etc. In sure, the field IDs are no longer unique, which makes it difficult to reference them using CSS and JavaScript.
Is there a way around this problem?