Sencha panel에 click 이벤트 넣기
2024. 8. 31. 21:35ㆍJavascript/Sencha
Case1
{
xtype: 'panel',
bodyStyle: 'background-color:black',
html: '<div style="height: 50px; display: flex; align-items: center;">Logout</div>',
listeners: {
afterrender: function(panel) {
panel.getEl().on('click', function() {
Ext.Msg.alert('Panel Clicked', 'You clicked on the panel!');
});
}
}
},
Case2
{
xtype: 'panel',
bodyStyle: 'background-color:black',
html: '<div style="height: 50px; display: flex; align-items: center;">Logout</div>',
listeners: {
click: {
lement: 'el', //bind to the underlying el property on the panel
fn: function(){ console.log('click el'); }
},
}
},
'Javascript > Sencha' 카테고리의 다른 글
Sencha requires (0) | 2024.09.01 |
---|---|
Sencha 팝업 호출 (0) | 2024.09.01 |
Sencha 'xtype' 정의 및 호출 (0) | 2024.08.31 |
Sencha app generate 실행시, 호출 순서 (0) | 2024.08.31 |
Sencha layout 설정 (0) | 2024.08.25 |