Reputation: 2994
I have been trying to use jqGrid
in my project, everything seems to be working fine except two scenarios :-
columnChooser
is clicked for the first time, it will not show the effect on click of done
button. It seems to be working for the second time. I have attached a video and fiddlecolumnChooser
, if anybody can brief me how to do it.PS: I am using free-jqgrid
Upvotes: 2
Views: 121
Reputation: 222017
The demo, which you posted uses old version of ui.multiselect.js
: from free jqGrid 4.11.0. The problem is already fixed (see here) in the version 4.13.5. The current release of free jqGrid is 4.14.1. Replacing of the ui.multiselect.js
and ui.multiselect.css
to the latest state fix the problem, which you report: see the modified demo http://jsfiddle.net/OlegKi/kbhmg9nq/1/.
The problem with the height
of columnChooser
is known (see the bug report). I'll try to fix the problem soon.
Upvotes: 2
Reputation: 50
I know about about how to set height of the columChooser
$("#bir").jqGrid('columnChooser', {dialog_opts :{ height:400}});
Upvotes: 1