gpt4 book ai didi

extjs - 从 extjs 的面板中选择一个容器

转载 作者:行者123 更新时间:2023-12-02 05:12:12 24 4
gpt4 key购买 nike

Extjs 4.1.1(a),在我的项目中,有一个面板(带有 Id #monthCalendar),它在一个 View 中有 42 个容器。我正在尝试为该 View 创建一个 Controller 。这里的 Controller 操作是在我单击面板内的任何容器时显示“hello”消息。我尝试了以下未在 chrome 控制台中显示任何类型的错误。

在我的 Controller 中:

onLaunch: function(){
Ext.each(Ext.ComponentQuery.query('#monthCalendar container'),function(container){
container.on('click',function(){
alert("hello");
},container,{element: 'el'})
})
}

最佳答案

这个应该可以用

Ext.each(Ext.ComponentQuery.query('#monthCalendar container'),function(c){
c.on({ click: {fn: function(){ alert("hello"); },scope: this, element:'el' }})
})

关于extjs - 从 extjs 的面板中选择一个容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15265809/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com