方式一: 可以隱藏控件,且不占任何空間
{
fieldLabel : '收貨地址ID',
id : 'addressID_update',
name : 'addressid',
xtype : 'hidden',
anchor : '99%'
}
方式二: 可以隱藏控件,但還是占據空間位置
{
fieldLabel : '購物車ID',
id : 'carID_update',
name : 'carid',
xtype : 'textfield',
hidden:true,
anchor : '99%'
},