I have a styled table containing first and last names in each column and nothing else. As part of the usage of my app, people will be entering names.
Should I:
- Have the "add" button launch a modal(using jquery) window and have the user enter the information and save. As soon as the modal closes, the table updates.
OR
- Have the "add" button create a new row at the bottom of the table. The new row will contain textboxes in the position of their respective content(column wise) and have a save button to the right of the row when the s
