I'm trying to plan our first web page using Java. We started looking at using JavaScript but since the table isn't static, I don't think we can use it. I want to use Netbeans and eventually junit to test.
Running web page:
checkbox list-> table for data entry/add/delete table columns -> send (all) data to DB
I noticed the checkbox in the link uses swing and awt. Is that ok to use for a webpage? A friend suggested swing and JPanel are better (more up-to-date), and I was looking at AWT also, but I haven't found anything about them yet. I found an example for JTable; hopefully that's good to use for a web page too. I was going to use a MVC pattern later. Do you have any other examples?