Jquery Current单选按钮在jqgrid中单击它禁用

时间:2015-04-28 11:42:40

标签: javascript jquery html jqgrid

我从数据库中获取值,该数据库附加到 jqgrid 中的单选按钮

formatter: function (cellValue, option){
    return '<input type="radio" name="subradio" id="subradio"/>';
}
beforeSelectRow: function (rowid, e) {
    getcurrpatta(rowid);
},

现在,如果我点击一个收音机,就会填充单选按钮。已经调用了一个函数。但是,如果我再次单击相同的单选按钮,它必须再次禁用无功能调用然后我去其他单击单选按钮旧的必须启用如何执行此操作???

1 个答案:

答案 0 :(得分:0)

这是javascript代码

$('input').each(function() {
    $(this).click(function() {
        $('input').removeAttr('disabled');
        $(this).attr('disabled', 'disabled');
    });
});

演示:jsFiddle