I've to create a dynamic html table using the values configured in a table. I'm using JSP with MVC architecture.
I've a row number, column number and value fields in table. If the values are 1,5 and HELLO correspondingly, then I've to display this HELLO in row 1 and column 5.
The table structure is like the following.
row column value
1 5 value1
2 8 value2
Any ideas?