I have this menu:
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
Both chackboxes and text fields have diffirent widths, so it looks ugly.
So, the quest:
How to make empty <td> in this form?
For reference, I want 6-2 items:
----------
| 1 | 1 |
| 2 | 2 |
| 3 | |
| 4 | |
| ..etc ... |
----------
source share