I'm looking for a way to trigger a resize of a jqGrid by dragging the mouse.
+1
A:
Good news: in version 3.6 they've added a gridResize feature.
It adds the drag handle for you and everything.
jQuery("#grid")
.jqGrid('gridResize',
{minWidth:350, maxWidth:800, minHeight:80, maxHeight:350}
);
See the demo - it's the last item under "New in version 3.6"
amir75
2010-05-27 21:21:21
Justin Ethier
2010-05-27 21:35:20
this works pretty well -- except that it seems to break the collapse/expand functionality... any thoughts?
Joe
2010-05-28 19:46:07
also seems really broken in opera.
Joe
2010-05-28 19:54:05
That's a shame about Opera. It's a bit wonky, but I think it's good enough for me to implement. It's described as an 'experimental' feature, so hopefully it'll improve in v3.7
amir75
2010-05-29 16:51:54