views:

402

answers:

2

I am looking for a jQuery plugin that manages tables. I need the capability to programmatically add/remove rows easily. Lastly, I need a "row level" "onclick" event.

A nice associated stylesheet would be appreciated :-)

NOTE: I know about plugins.jquery.com but I am pretty "newbie" when it comes to jQuery... I need your help guys, please.

UPDATED: for a given plugin, please state how I would go about adding a row and removing a specific row.

A: 

This blog post details 15 different jquery plugins for table manipulation.

http://www.webdesignbooth.com/15-great-jquery-plugins-for-better-table-manipulation/

Tim Snyder
Thanks Tim: I have already googled myself to boredom. I am looking for which plugin supports my requirements since I am no expert in jQuery.
jldupont
+2  A: 

jQGrid is a mature jQuery grid plugin which has an add/remove API. Use the onSelectRow config option for a row-level onclick and the addRowData & delRowData methods to add/remove rows.

You may also want to try tablesorter.

Personally I think the jQuery team should add a Grid/Table widget to the standard jQuery UI package but they haven't done so yet.

Supertux