Hi
I've been trying to figure out how to work with the JSP standard Data Table control in Netbeans.
In a common Java desktop application by using a jTable I can add custom values by doing something like this...
|
Code:
|
jTable1.getModel().setValueAt("test", 3, 3); |
but I cant seem to find any equivalent for JSP pages.
I'm not even able to iterate through the table's cell (which is probably because a JSP Data Table is composed by several other components.)
I would very much appreciate any type of info that would get me started (a tutorial, a code snippet, anything...)
Thanks