我!我工具栏中的按钮必须创建面板。 我有一些问题和疑问。
1)将创建的面板设置为可放置药物时:是的,单击后面板未租用。 Chrome控制台将其抛出:o类Ext.util.translatable.CssPosition的此类配置“ translationMethod”。如何使其运作(可拖动)?
2)在主面板上创建面板的最佳方法是什么?像我一样或其他方法?我使用extjs 6.2 modern。
3)如果居中设置为false,则面板会异常创建(没有标题和标题)。该如何解决?
工具栏是Main中的一项。 “ mycuts”按钮是工具栏上的一项。 我希望有人可以帮助我 有代码:
{
text:'mycuts',
cls: 'grbuttons',
ui:'action',
height: 35,
width: 205,
margin:2,
handler: function() {
Ext.create('Ext.panel.Panel',{
height: 300,
id:'mycutareagrid',
header:{
title:'cuts',
draggable: true,
},
//draggable:true,
header: {
cls : 'hdr2'
},
width: 850,
renderTo:'bighBox',
centered:true,
margin: '98 0 0 215',
autoDestroy: true,
items:[{
xtype:'contlistII'
}],
collapsible:true,
clossable: true,
scope: this,
tools: [{
type:'help'
},{
type:'search'
},{
type:'close',
handler: function(e) {
e.hide()
}
}],
listeners:{
afterrender: function(e){
var d = e.getHeaderContainer();
e.setHeight(10);
}
}
})
}
}