文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Extjs RadioGroup二选一

Extjs RadioGroup二选一

时间:2010-10-02  来源:孙振兴

对上边文章改进了一下,通过一个函数:

 

function check(r,b){
        var firstRadio=Ext.getCmp('radio0');
        var secondRadio=Ext.getCmp('radio1');
        if(r.getId()==='radio0'){
                if(b){secondRadio.setValue(false);firstRadio.setValue(true)}
                else{secondRadio.setValue(true);firstRadio.setValue(false)}
        }else{
                if(b){secondRadio.setValue(true);firstRadio.setValue(false)}
                else{secondRadio.setValue(false);firstRadio.setValue(true)}
        }
};

 

同时还要设置第一个radio的checked为true。通过check事件调用上边的方法就好了。

 

{xtype:'radio',boxLabel:'并且',checked:true,id:'radio0',listeners:{'check':function(r,b){check(r,b)}}},{xtype:'radio',boxLabel:'或者',id:'radio1',listeners:{'check':function(r,b){check(r,b)}}}]
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载