Sencha button 이벤트 추가하기

2024. 12. 19. 20:40Javascript/Sencha

{
    xtype: 'button',
    text: 'Click Me',
    handler: function () {
        Ext.Msg.alert('Button Clicked', 'You clicked the button!');
    }
}