Javascript – implementing data grid using jquery

csvdatagrideditorjavascriptjquery

I need to read data from a CSV file & display it as a data grid. The CSV file contains name-value pair i.e. column A will contain name & column B will contain its value. Also, the user can add a blank row to the end of it & insert data manually by clicking on an add button. The user can select any row & delete the row completely by pressing on the delete button.

What would be a good approach towards implementing this, especially deleting selected rows?

Best Answer

My favorite at the moment is jQuery dataTables:

http://www.datatables.net/

if you want to parse CSV data I would look at FileHelpers:

http://www.filehelpers.com/

its free