其他分享
首页 > 其他分享> > ExtJS-事件管理-事件介绍

ExtJS-事件管理-事件介绍

作者:互联网

更新记录
2022年7月24日 发布。
2022年7月16日 从笔记迁移到博客。

ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html

ExtJS事件介绍

ExtJS中支持DOM事件、组件事件、手势事件
事件允许代码对应用程序周围的更改做出反应。

image

实例:配置ExtJS内置事件监听
当Component呈现到屏幕时,Ext JS在渲染完成后触发事件

Ext.create('Ext.Panel', {
    html: 'My Panel',
    renderTo: Ext.getBody(),
    listeners: {
        afterrender: function() {
            Ext.Msg.alert('Success!', 'We have been rendered');
        }
    }
});

标签:介绍,Ext,html,事件,2022,ExtJS,Panel
来源: https://www.cnblogs.com/cqpanda/p/16483339.html