3

Does anyone perhaps know of a good alternative to use for component art grid ? I have a situation where the viewstate for one page is 1.5MB as a result of a grid with 1800 rows that have to be clientside because they are editable and the result is all postbacks on the page are really slow because all that viewstate needs to be uploaded.

So I'm considering replacing the componentart grid with some alternative such as http://www.datatables.net/ , I love that grid but unfortunately I need more functionality such as expandable rows, up to three levels. This is also amazing http://www.ext.net/ , but the licences are quite expensive and not sure if my requirements are for a whole framework when I just need one grid. Are there any other client side tables/grid you could reccoment ?

Here is an example of the current solution (censored sensitive info ) : grid example

John
  • 3,512
  • 2
  • 36
  • 53

3 Answers3

2

Jq grid CAN be good option for u .....here is the link....

http://www.trirand.com/blog/jqgrid/jqgrid.html..

Amit Singh
  • 8,039
  • 20
  • 29
  • This is definitely an option thanks, I will investigate this one and get back to you. – John Apr 04 '13 at 08:25
1

Try DevExpress.. Its not free but this one of the best tools around..

http://demos.devexpress.com/RWA/WebmailClient/

Clyde
  • 732
  • 8
  • 19
1

You could treat the client-side grid as a window into the whole grid, loading & saving only the values that are currently displayed.

Mark Leighton Fisher
  • 5,609
  • 2
  • 18
  • 29