回答
how to make sort icons visible in all column headers in jqgrid regardless on sort status
描述了如何向列添加可排序的指示。
很难通过默认排序指示器区分已排序和未排序的列。
如何在addidion中对已排序的列标题文本加下划线?
答案 0 :(得分:2)
我将之前的答案修改为the following,现在显示
我用于演示CSS类,我另外用下划线改变了文本的颜色
.sortedColumnHeader > div { text-decoration: underline; color: blue; }
如果我们向前发挥,我们可以使用'ui-state-highlight'来突出显示(参见another demo)。列标题可能与标准列有太多区别:
相应的代码是
var $grid = $("#list"), colModel, sortName;
// create the grid
$grid.jqGrid({
// all typical jqGrid parameters
onSortCol: function (index, idxcol, sortorder) {
if (this.p.lastsort >= 0 && this.p.lastsort !== idxcol
&& this.p.colModel[this.p.lastsort].sortable !== false) {
// show the icons of last sorted column
$(this.grid.headers[this.p.lastsort].el)
.find(">div.ui-jqgrid-sortable>span.s-ico").show();
$(this.grid.headers[this.p.lastsort].el).removeClass('sortedColumnHeader');
}
$(this.grid.headers[idxcol].el).addClass('sortedColumnHeader');
}
});
// show sort icons of all sortable columns
colModel = $grid.jqGrid('getGridParam', 'colModel');
sortName = $grid.jqGrid('getGridParam', 'sortname');
$('#gbox_' + $.jgrid.jqID($grid[0].id) +
' tr.ui-jqgrid-labels th.ui-th-column').each(function (i) {
var cmi = colModel[i], colName = cmi.name;
if (cmi.sortable !== false) {
// show the sorting icons
$(this).find('>div.ui-jqgrid-sortable>span.s-ico').show();
} else if (!cmi.sortable && colName !== 'rn' && colName !== 'cb' && colName !== 'subgrid') {
// change the mouse cursor on the columns which are non-sortable
$(this).find('>div.ui-jqgrid-sortable').css({cursor: 'default'});
}
if (cmi.name === sortName) {
$(this).addClass('sortedColumnHeader');
}
});
最后,我想再引用一个old answer,其中显示另一个复杂的方法来突出显示已排序的列。