如何从 extjs splitbutton 菜单访问工具栏?
我有一个像这样的工具栏
tbar: [{
xtype : 'textfield',
name : 'number',
itemId : 'number',
listeners : {
change : function(t,n){
console.log(this.up('toolbar').down('#splitbut')) // i can access splitbutton from here
}
}
},{
xtype : 'splitbutton',
text : 'Report',
disabled: true,
itemId : 'splitbut',
menu : [{
text : 'details',
handler : function() {
// how to access #number text field from here
}
}
,我在菜单按钮处理程序中尝试了 this.up('menu').up('toolbar') ,但我收到未定义的消息,我尝试
任何想法如何从菜单按钮访问 #number 文本字段?
问候
I have a toolbar like this
tbar: [{
xtype : 'textfield',
name : 'number',
itemId : 'number',
listeners : {
change : function(t,n){
console.log(this.up('toolbar').down('#splitbut')) // i can access splitbutton from here
}
}
},{
xtype : 'splitbutton',
text : 'Report',
disabled: true,
itemId : 'splitbut',
menu : [{
text : 'details',
handler : function() {
// how to access #number text field from here
}
}
i tried like this.up('menu').up('toolbar') inside menu button handler but im getting undefined message for each way i try
any idea how to access #number text field from menu button?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将分别定义文本字段和拆分按钮,然后以这种方式引用它们。
I would define the textfield and the splitbutton separately, then reference them that way.
Gihan 您的菜单项不是从具有 up 功能的组件扩展的。尝试将作用域传递给处理函数:
在函数内设置断点并在 firebug 中检查它。那时你就会清楚地看到“这个”指的是什么。另外,如果您打算使用 ExtJS 进行开发,我强烈建议您获取 Firefox 开发人员的 Illuminations - 您会喜欢它的。
Gihan your menu item does not extend from a component that has up function. Try passing in scope to handler function:
set the break point inside the function and inspect it in firebug. you will clearly see what 'this' refers to at that point. Also if you are going to be developing in ExtJS I would strongly recommend you getting Illuminations fro developers for Firefox - you will love it.