如何在extjs中设置网格高度行

时间:2011-10-12 16:59:28

标签: extjs3

在我的代码中我使用了四个网格,我在css中设置行高如下: .x-grid3-row td {line-height: 50px;} 它设置了我所有网格的行。 所以我需要设置其中一个网格的高度行。

2 个答案:

答案 0 :(得分:2)

基于id或cls类,您可以单独指定每个组件的CSS。例如,如果您的网格标识为sample,则代码为:

.sample .x-grid3-row td {line-height: 50px;} 

答案 1 :(得分:1)

迟到的答案,但另一个选择是在viewConfig上使用getRowClass:

viewConfig: {
    getRowClass: function (record, rowIndex, rp, store) {
        rp.tstyle += 'height: 50px;';
    }
}