I am trying to create a simple javascript Grid but I can't seem to find any simple solutions.
Here is what I am trying to do, on a webpage I want users to be able to add as many part numbers , description for each item and a date. So basically it looks like this -
My problem is I am not sure how many items will added upfront and there is no fixed number. Also when the user hits submits all the information is stored in a table so each row has to be uniqe.
Here is what I am trying to do, on a webpage I want users to be able to add as many part numbers , description for each item and a date. So basically it looks like this -
Code:
Part Number Descrption Date
A1100 Part A 01/01/05
BAE1223 Part B 02/02/05
My problem is I am not sure how many items will added upfront and there is no fixed number. Also when the user hits submits all the information is stored in a table so each row has to be uniqe.