ext 表单中的两种隐藏域hidden

 

方式一:  可以隐藏控件,且不占任何空间     

    {
        fieldLabel : '收货地址ID',
        id : 'addressID_update',
        name : 'addressid',
        xtype : 'hidden',
        anchor : '99%'
       }

方式二: 可以隐藏控件,但还是占据空间位置   

   {
        fieldLabel : '购物车ID',
        id : 'carID_update',
        name : 'carid',
        xtype : 'textfield',

        hidden:true,
        anchor : '99%'
       },

posted @ 2013-06-05 09:21  miss you  阅读(4361)  评论(0编辑  收藏  举报