4

我有这个菜单:

items:[      
{
    xtype: 'form',
    id: 'searchPanel',
    title: 'Search',
    collapsible: true,
    bodyPadding: 10,
    height: 210,
    buttonAlign: 'left',
    defaults: {
        width: 400,
        labelWidth: 120,
        allowBlank: true,
        enableKeyEvents: true        
    },
    layout: {
        type: 'table',
        columns: 2
    },
    items: [
        {
            xtype: 'textfield',
            name: 'txtFltrSiteName',
            fieldLabel: 'Site name or alias',
            id: 'txtFltrSiteName'
        },

        {
            xtype: 'textfield',
            name: 'txtDiskCost',
            fieldLabel: 'Disk cost',
            id: 'txtDiskCost',
            style: 'margin-left: 100px;'
        },

        {
            xtype: 'textfield',
            name: 'txtFltrProjectName',
            fieldLabel: 'Project name',
            id: 'txtFltrProjectName'
        },

       // many other fields  

并且复选框和文本字段的宽度不同,因此看起来很难看。
所以问题是:
如何使<td>这种形式为空?
例如,我想要 6-2 项:

----------
| 1 | 1 |
| 2 | 2 |
| 3 | |
| 4 | |
|..等等...|
----------
4

2 回答 2

4

只需进行隐藏输入。像这样:

{
    xtype: 'hidden',
    name: 'hidden1',
    id: 'hidden1'
},

这将成为<td>列,但它将是空的,因为它将被hidden输入其中。

于 2012-12-03T07:26:09.020 回答
0

这是一个更好的:

{
  xtype : 'label',
  text  : '',
  labelSeparator: ''
}
于 2013-08-16T00:39:56.947 回答