如何在jQgrid中指定禁用重新排序的多个列?代码用于指定一列?

时间:2016-12-15 14:18:52

标签: jqgrid

如何指定多个列以禁用jQgrid中的重新排序?指定一列的代码如下:

$("#grid").jqGrid({
 sortable:{
    exclude: '#'+ 'grid' +'_'+'columnname';
    //Specifying More than One Column
});

1 个答案:

答案 0 :(得分:0)

exclude的值只是一个选择器。因此,可以指定多个逗号分隔的id选择器:

$("#grid").jqGrid({
    ...
    sortable: {
        exclude: '#' + 'grid' + '_' + 'columnname1' + ','
                 '#' + 'grid' + '_' + 'columnname2'
    }
);