是否有一种声明方式来设置jqGrid标签的css类?

时间:2011-11-01 15:24:52

标签: javascript css jqgrid

可以使用列的colModel为数据单元设置类,是否有类似的方法为相应的TH /标签声明其​​他类?我可以看到使用setLabel有一种编程方式,但如果可能的话,我会在声明中想要它。

1 个答案:

答案 0 :(得分:2)

您可以使用jqGrid创建具有id的列标题这一事实,这些id是从grid id和column name属性构造的。例如,如果网格具有id ='list',并且您希望为名称为'name'(name: 'name')的列设置一些样式,则可以为forid ='list_name'定义CSS样式。

The demo看起来像

enter image description here

并使用以下CSS样式

<style type="text/css">
    #list_name {
        text-align: left;
        font-style: italic;
        color: red
    }
    #list_closed {
        font-weight: normal;
    }
    #list_note {
        text-align: left
    }
    #list_amount, #list_tax, #list_total {
        text-align: right;
        margin-right: 20px
    }
</style>