如何获取 Extjs 4 单选组的检查值?
我已将底部栏添加到这样的面板中,
bbar: [{
xtype : 'button',
text : 'Select Filter By',
itemId : 'filter_by',
arrowAlign : 'right',
menu : [{
text : 'Item Code',
checked : true,
group : 'filter',
itemId : 'item_code'
},{
text : 'Description',
checked : false,
group : 'filter',
itemId : 'description'
}]
}]
如何从这两个中检查哪个?
问候
I have bottom bar added to a panel like this
bbar: [{
xtype : 'button',
text : 'Select Filter By',
itemId : 'filter_by',
arrowAlign : 'right',
menu : [{
text : 'Item Code',
checked : true,
group : 'filter',
itemId : 'item_code'
},{
text : 'Description',
checked : false,
group : 'filter',
itemId : 'description'
}]
}]
how to get the which is checked from these two?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这种情况下,它们都可以被选中或取消选中。
您可以为每个提供一个 id,然后只需执行
Ext.getCmp('id1').getValue()
和Ext.getCmp('id2').getValue()
获取每个的状态如果您想将它们用作“组”,则必须将它们包装在 CheckboxGroup 或 RadioGroup 根据您的要求。
In this case, they both can be checked or unchecked.
You can give an id to each and then simply do
Ext.getCmp('id1').getValue()
andExt.getCmp('id2').getValue()
to get the state of eachIf you want to use these as a "group", you will have to wrap them in a CheckboxGroup or RadioGroup depending on your requirement.
尝试这个
这个想法只是为每个
Ext.menu.Menu<添加一个监听器< /代码>。
如果您正在使用自己的类,则可以将
testCheck
作为您的方法之一。try this
the idea is just add a listener to each
Ext.menu.Menu
.if you are working with your own class, you can make
testCheck
as one of your method..