I have a jqGrid column which name may change (is a variable), how do I get the name and hide it?
Something along the lines of the below (which don't work)
$('#tblGridName').jqGrid('hideCol',4);
or
var infoName = $('.ui-jqgrid-htable th:eq(4)').text();
$('#tblGridName').jqGrid('hideCol',infoName );
I have a jqGrid column which name may change (is a variable), how do I get the name and hide it?
Something along the lines of the below (which don't work)
$('#tblGridName').jqGrid('hideCol',4);
or
var infoName = $('.ui-jqgrid-htable th:eq(4)').text();
$('#tblGridName').jqGrid('hideCol',infoName );
Share
Improve this question
asked Aug 1, 2010 at 23:03
bcmbcm
5,50010 gold badges60 silver badges92 bronze badges
2 Answers
Reset to default 8You can just use
var cm = myGrid.getGridParam("colModel");
to get the current colModel
. Then cm[4].name
is the name of the column. So
var colPos = 4;
var myGrid = $('#tblGridName');
myGrid.jqGrid('hideCol', myGrid.getGridParam("colModel")[colPos].name);
do what you need.
Sorry, found the answer almost right off.
Just amended this
var infoName = $('.ui-jqgrid-htable th:eq(4)').text();
$('#tblGridName').jqGrid('hideCol',infoName );
to be
var infoName = $.trim( $('.ui-jqgrid-htable th:eq(4)').text() );
$('#tblGridName').jqGrid('hideCol',infoName );
Any better solutions weled.