0
我正在使用一個包含三個按鈕的工具欄的面板。按鈕不顯示動畫效果
此面板載入2個diff文件。
加載它的第一個文件在按下按鈕或釋放按鈕時顯示適當的漸變效果,但另一個面板在al上不顯示效果。按鈕仍然有效,但風格不存在。
它是否被其他文件寫入?
我的板是:
config:{
navigationBar: {
hidden:'true'
},
items:[
{
xtype:'toolbar',
layout:'hbox',
height:70,
width:310,
activeItem:2,
items:[
{
xtype:'button',
iconCls:'note_black',
iconAlign:'top',
text:'Workitems',
iconMask:true,
ui:'normal',
id:'workitem',
// enableToggle:true,
enabled:true,
disabled:false,
top:5,
height:60,
handler:function() {
// Ext.getCmp('workitem').setUi('toggle');
// Ext.getCmp('workitem').toggle(true,true);
//Ext.getCmp('workitem').toggle(false,true);
// Ext.getCmp('workitem').setPressed(0);
//Ext.getCmp('workitem').addCls('button_pressed');
}
},
{
xtype:'button',
iconCls:'inbox2',
iconAlign:'top',
text:'Inbox Queue',
iconMask:true,
ui:'normal',
id:'inbox',
top:5,
height:60,
enabled:true,
disabled:false,
left:93,
handler:function() {
}
},
{
xtype:'button',
iconCls:'doc_drawer',
iconAlign:'top',
text:'File Cabinet',
enabled:true,
disabled:false,
iconMask:true,
ui:'normal',
id:'filecabinet',
top:5,
height:60,
left:200,
handler:function() {
}
}]
}]
}
和M加載它在2個差異文件與說提前
{
xtype:'bottomBarPanel'
},
由於相同的代碼。