admin管理员组文章数量:1341462
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.
本文标签: javascriptHow do I hide a jqGrid column of variable nameStack Overflow
版权声明:本文标题:javascript - How do I hide a jqGrid column of variable name? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743664757a2518540.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论