如何获取 Extjs 4 单选组的检查值?

发布于 2024-12-04 13:42:57 字数 713 浏览 0 评论 0原文

我已将底部栏添加到这样的面板中,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

临风闻羌笛 2024-12-11 13:42:57

在这种情况下,它们都可以被选中或取消选中。

您可以为每个提供一个 id,然后只需执行 Ext.getCmp('id1').getValue()Ext.getCmp('id2').getValue()获取每个的状态

如果您想将它们用作“组”,则必须将它们包装在 CheckboxGroupRadioGroup 根据您的要求。

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() and Ext.getCmp('id2').getValue() to get the state of each

If you want to use these as a "group", you will have to wrap them in a CheckboxGroup or RadioGroup depending on your requirement.

两相知 2024-12-11 13:42:57

尝试这个

这个想法只是为每个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..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文