如何在 extjs 6 中添加自定义事件?
How add custom event in extjs 6?
我在使用 Extjs 6。我从 Ext.Component
扩展了一个 class。我想添加 class 一些事件。
我该怎么做?
您不必在 ExtJS 6 中声明自定义事件。您只需要监听它们并触发它们。
component.fireEvent("customEvent", component, otherArgs);
我在使用 Extjs 6。我从 Ext.Component
扩展了一个 class。我想添加 class 一些事件。
我该怎么做?
您不必在 ExtJS 6 中声明自定义事件。您只需要监听它们并触发它们。
component.fireEvent("customEvent", component, otherArgs);