-2

I need a jqGrid like the below image.

http://imageshack.us/photo/my-images/851/jqgrid.jpg/

How can I get that type of jqGrid??

Foysal
  • 175
  • 1
  • 11

1 Answers1

1

Just use cloneToTop:true parameter of the navGrid. See the answer and this one for more details.

Community
  • 1
  • 1
Oleg
  • 220,925
  • 34
  • 403
  • 798
  • "@Oleg" I tried as your way and got a output like below http://imageshack.us/photo/my-images/824/jqgrid.jpg/ I would like to remove the red marked portion that is named list table(may be). Thanks for reply – Foysal Aug 28 '11 at 14:30
  • @Foysal: If you need you can hide the column headers with the code like `grid.closest('div.ui-jqgrid-view').find('tr.ui-jqgrid-labels').hide();` where `grid` is the `table` element of your jqGrid (`var grid = $('#list')`). – Oleg Aug 28 '11 at 14:41