(ExtJS)设置fieldset表的行高

时间:2014-09-17 19:34:40

标签: css extjs

这似乎是一个简单的解决方案,但我无法弄清楚如何设置我的fieldset表的行高。玩CSS似乎也没有做任何事情。

xtype: 'fieldset',
title: 'Fieldset',
layout: {
    type: 'table',
    columns: 2,
    cellCls: 'myFormTblCell'
},
margin: '5 5 5 5',
items: [{
    xtype: 'label',
    text: 'lable 1',
    cls: 'myLabel'
},{
    xtype: 'displayfield',
    name: 'displayfield 1',
    cls: 'myText'
},{
    xtype: 'label',
    text: 'lable 2',
    cls: 'myLabel'
},{
    xtype: 'displayfield',
    name: 'displayfield 2',
    cls: 'myText'
}]

1 个答案:

答案 0 :(得分:2)

我使用ExtJS版本4.2.2,您将在其中执行以下操作

在你的布局配置中......

layout: {
    type: 'table',
    columns: 2,
    trAttrs: { height: 50 },
    cellCls: 'myFormTblCell'
},

Documentation on ExtJS table layout

JSFiddle