0

In data-table grid is responsive on mobile/tablet, where last columns(you can see in image - salary column) are hiding as resizing.

IMAGE

So this can be achievable (same as or something different way -no horizontal scrollbar in responsive view) with jqGrid?

Right now i have no idea about it done with jqGrid or not ?

Draval
  • 120
  • 8

2 Answers2

0

I think this is closest you'll get in making you jqgrid responsive.

But the feature to toggle some columns visiblity is really not there.

Community
  • 1
  • 1
a_nain
  • 175
  • 1
  • 8
0

Free jqGrid supports labelClasses property, which can be set in colModel additionally with classes property. You can use hidden-XX classes of Bootstrap (see here)

classes: "hidden-xs",
labelClasses: "hidden-xs"

to hide the column for extra small/small/ledium or large devices. You can resize the window on the demo http://jsfiddle.net/OlegKi/andm1299/45/ to see the results.

Oleg
  • 220,925
  • 34
  • 403
  • 798