Extjs4에서 패널의 간단한 사용
1805 단어 Extjs4
Ext.onReady(function(){
Ext.QuickTips.init();
Ext.create('Ext.panel.Panel',{
title: '[01] [Ext.panel.Header]',
width: 500,
bodyPadding : 10,//
height: 400,
hideCollapseTool:false,
collapsible :true,
//animCollapse : false,//
//frame : true,//
autoLoad:'/Learning-extjs4.0/lesson/26/ass.html',// null
html: '[02]
',//
autoScroll:true,//
closable:true,//
closeAction:'destroy',// [destroy|hide]
bodyStyle: {
background: '#ffc'
},
renderTo: 'demo',
tbar: [
{ xtype: 'button', text: '[03] ' }
],
bbar: [
{ xtype: 'button', text: '[04] ' }
],
dockedItems: [{
xtype: 'toolbar',
dock: 'bottom',
ui: 'footer',
items: [
{ xtype: 'component', flex: 1 },
{ xtype: 'button', text: '[05] ',
handler:function(b){
b.up("panel").removeAll(true)//
}
}
]
}],
tools:[{
type:'refresh',
qtip: ' '
},{
type:'help',
qtip: ' '
},{
id:'next',
handler: function(event, toolEl, panel){
panel.up("panel").insert(0,{
xtype:'panel',
width:100,
height:100,
bodyStyle: {
background: 'red'
}
})
}
}]
});
});
/**
close
collapse
down
expand
gear
help
left
maximize
minimize
minus
move
next
pin
plus
prev
print
refresh
resize
restore
right
save
search
toggle
unpin
up
*/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Ext에서 combobobox의 valueField 및 displayField 값을 가져옵니다.Extjs 코드 Ext.getCmp("schemaVersion").value//은 valueField 값입니다. Extjs 코드 Ext.get('schemaVersion').dom.value//에서 가져온 것은dis...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.