I am using jqgrid .
My aim is to view hide columns .I used columnChoser like mentioned below .
$('#Table').jqGrid('columnChooser', {
done: function (perm) {
if (perm) {
this.jqGrid('remapColumns', perm, true);
}
}
});
Problem : The trouble here is the colums are adding to end of table while restoring. Is there any way to restrore them to same place .
Can someone explain me what is perm ? Is there a way to show only specific colums in the columChoser based on column index like ex: [ 3,4,7]
Any help would be appreciated.