Rachel
Rachel

Reputation: 37

Jsp Editable Datagrid

I have to build a datagrid.The grid should be editable and values should be passed .I am new to JSP .Can anyone tell me the step by step procedure of creating a editable datagrid in jsp without connecting to the database.

Upvotes: 0

Views: 10759

Answers (1)

Abdullah Jibaly
Abdullah Jibaly

Reputation: 54810

Take a look at http://code.google.com/p/jquery-datatables-editable/

You can simply apply it to an html table (create it in the jsp), and it will make it client-side editable.

Here's an example of how to do it:

http://code.google.com/p/jquery-datatables-editable/wiki/HTMLSource

Upvotes: 1

Related Questions