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

Extjs在panel的标题栏上加按钮的方法

时间:2017-08-22 16:49:50      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:top   pos   方法   and   eth   避免   this   xtend   解决方案   

Ext.define(‘MyPanel‘,{
extend:‘Ext.panel.Panel‘,
xtype:‘mypanel‘,
title:‘title‘,
height:200,
initComponent:function(){
var me=this;
me.okBtn = new Ext.button.Button({
//按钮位置可通过此样式进行修改,如果按钮靠右显示可修改为把left改成right
//采用此解决方案可以避免标题栏被撑高。
style:‘position: absolute;top: 5px;left: 60px;‘,
text: ‘ok‘,scope: me,
handler:function(){
alert(‘ok click‘);
}
});
this.callParent();
},
onRender:function(){
this.callParent(arguments);
this.okBtn.render(Ext.get(this.getHeader().id));
},
onDestroy: function() {
this.okBtn.destroy();
this.callParent();
}
});

Extjs在panel的标题栏上加按钮的方法

标签:top   pos   方法   and   eth   避免   this   xtend   解决方案   

原文地址:http://www.cnblogs.com/jiawenjun/p/7412270.html

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