码迷,mamicode.com
首页 > Web开发 > 详细

EXTJS 3.0 资料 控件之 FormPanel 插入button用法

时间:2014-12-29 18:09:04      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

最近发现项目中FormPanel 里面需要 增加 button,的模块比较多,具体代码如下:

 

var eastPanelForm_Dele = new Ext.form.FormPanel({
    id: ‘eastPanelForm_Dele‘,
    width: 250,
    border: false,
    autoScroll: true,
    height: 400,
    frame: true,
    layout: ‘form‘,
    region: ‘center‘,
    items: [{
        bodyStyle: ‘padding:30px‘,
        layout: ‘column‘,
        items: [{
            id: ‘btnAllDele‘,
            width: 200,
            height: 100,
            xtype: ‘button‘,
            text: ‘狠心删除‘,
            handler: function () {

            }
        }]
    }, {
        bodyStyle: ‘padding:30px‘,
        layout: ‘column‘,
        height: 150,
        items: [{
            id: ‘btnAllDeleThink‘,
            width: 200,
            height: 100,
            xtype: ‘button‘,
            text: ‘我再想想‘,
            handler: function () {

            }
        }]
    }
    ]
});

 

EXTJS 3.0 资料 控件之 FormPanel 插入button用法

标签:

原文地址:http://www.cnblogs.com/foreverfendou/p/4192049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!