J
john
I have a input form like this :
COLUMN1 NAME1(outputText)
COLUMNNAME2(outputText) COLUMNNAME3(outputText)
ROW NAME(outputText) | 20.4 (inputText)
| 10.1 (inputText) | 3.3
(inputText) |
the problem is that I will have more than 300 rows. My question is is it
better to have hardcoded jspx like this below, or
to put dataTable which will have class like this
class Form{
private String rowName;
private String columnOneValue;
.......
}
and generate that form from DB data, and how would that table in DB
looked like ?
Thanks in advance.
COLUMN1 NAME1(outputText)
COLUMNNAME2(outputText) COLUMNNAME3(outputText)
ROW NAME(outputText) | 20.4 (inputText)
| 10.1 (inputText) | 3.3
(inputText) |
the problem is that I will have more than 300 rows. My question is is it
better to have hardcoded jspx like this below, or
to put dataTable which will have class like this
class Form{
private String rowName;
private String columnOneValue;
.......
}
and generate that form from DB data, and how would that table in DB
looked like ?
Thanks in advance.