Dhwani
Dhwani

Reputation: 7626

Which Grid/Table will be more suitable and easy to implement in ASP.NET MVC3?

I am new to ASP.NET MVC3. I had used WebGrid and TableSorter in my project. But they are lacking at some place. So I would like to know if is there a better Grid/Table which has following facilities(of-course a free version):

1) Single and Multiple Column Sorting.

2) Sorting and Pagination through Ajax.

3) Filtering

4) SubGrid(Optional)

5) Light-weight and Less-coding

6) CRUD Operations

I am using List to get data from model in table/grid and I have to display more than 1000 number of Records.

Upvotes: 0

Views: 82

Answers (1)

kerzek
kerzek

Reputation: 510

I've been using jqgrid for a while with MVC 3 and razor. It's a very flexible and powerful tool and has the features you are looking for. You'll find more information on its page.

Upvotes: 2

Related Questions