I am using jqGrid 4.6.0.
Implemented Column chooser feature using the below code.
I am using
Â
$grid.jqGrid(‘navButtonAdd’, “#p” + $grid.attr(“id”), {
caption: “”,
buttonicon: “ui-icon-calculator”,
title: “Choose columns”,
onClickButton: function () {
$(this).jqGrid(‘columnChooser’,
{
width: 260,
height: 280,
classname: “column-chooser”,
msel_opts: { //multiselect options
autoOpen: true,
header: true,
height: “auto”,
classes: “column-chooser”,
beforeclose: function () { return false; } //keep multiselect drop down open
}
});
}
});
Â
The column chooser popup  is showing up without available columns and make all columns visible options..Â
Just one option is available i.e., select columns..Â
Â
I need column chooser with availabe columns and make all columns visible options..Â
Â
Thanks in advance…Â
[Image Can Not Be Found]
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top