使用jQuery禁用附加下拉列表中的选项

时间:2015-04-08 02:01:56

标签: php jquery drop-down-menu append yii2

我正在使用Yii2 php框架,这是我如何显示第一个下拉列表:

<?php 
    $deductions = PayrollItems::find()->where(['store_id' => $session['store_id']])->orwhere(['store_id' => null])->where(['payroll_type' => 'Deduction'])->all();
    $deductionslistData = ArrayHelper::map($deductions,'payroll_items_id', 'payroll_name');
    echo $form->field($model2, 'deduction_item_id')->widget(Select2::classname(), [
        'data' => $deductionslistData,
        'options' => ['placeholder' => 'Select a Deduction ', 'id' => 'deduction_item'],
        'pluginOptions' => [
            'allowClear' => true
        ],
    ]);
?>

这是用于附加新下拉列表的脚本函数:

function addDeductionItem(){   
    var count = $('#count2').val();
    if($('#deduction_item').val()=="" || $('#deduction_item_' + count).val()==""){
        alert("Please fill in the earning item field first!");
    }
    else{
        count++ ;
        $('#count2').val(count);

        $.ajax({
            url: 'index.php?r=payslip/deductions',
            dataType: 'json',
            method: 'GET',
            data: {},
            success: function (data, textStatus, jqXHR) {
                $("#deduction_item_" + count).append($("<option></option>").html(""));
                //$("#deduction_item_" + count).append($("<option></option>").val('add item').html("Add New Item"));
                for(i=0; i<data.length;i++)
                {                      
                    $("#deduction_item_" + count).append($("<option></option>").val(data[i][1]).html(data[i][0]));                        
                }
            },
            error: function (jqXHR, textStatus, errorThrown) {
                console.log('An error occured!');
                alert('Error in ajax request');
            }
        });

        var deduction = '<tr id="row_' + count +'"><td><select class="form-control input-md" placeholder="Select a Deduction " style="width: 100%; cursor: pointer;" data-krajee-select2="select2_6789bf5d" tabindex="-1" id="deduction_item_' + count + '" name="deduction_item_' + count + '"></select></td><td><input class="form-control" type="text" id="deduction_unit_' + count + '"  name="deduction_unit_' + count + '"></td><td><input class="form-control" type="text" id="deduction_amount_' + count + '" name="deduction_amount_' + count + '" onchange="_getTotalDeduction(id)"></td>';

        deduction += '<td><a style="cursor:pointer" class="ibtnDel"><i class="fa fa-times">&nbsp;&nbsp;</a></td></tr>';    

        $("#deduction_items").append(deduction);

        $("#deduction_items").on('click','.ibtnDel',function(){
            $(this).closest('tr').remove();
        });

        $('#row_' + count + ' select').select2(); 
    }        
}

我有一个下拉列表,例如它有3个选项,然后我选择选项01.现在,当我添加一个新的下拉列表时(通过点击我的案例中的“添加扣除项目”按钮) ,将禁用附加下拉列表中的选项01。

整个想法是,当我在第一个下拉列表中选择一个选项时,现在应该在附加的下拉列表中禁用所选的选项,依此类推。

我通过互联网搜索了这个问题。我找到了一些,但他们只是不适合我,因为我的问题与我找到的问题不太相似。

我发现并尝试了这个小提琴:http://jsfiddle.net/rajan222000/yww8apn9/1/ 但仍然不适合我。我注意到它有静态的下拉列表数。我尝试var deductionID = 'deduction_item_' + count + '';让它变得动态,但我不知道为什么它不起作用。

我真的需要你的帮助。

1 个答案:

答案 0 :(得分:0)

如果我理解正确,那么你需要获取已经生成的下拉列表的所有选定值,并在新创建的下拉列表中禁用它。

如果没有任何代码重构,您需要启动一个简单的for循环并禁用新下拉列表中的所有选定值。

在Ajax调用中将此函数添加到success函数的末尾应该可以解决这个问题:

for(var c=count-1; c>=0; c--) {
    var sel = $("#deduction_item_" + c).val();
    $("#deduction_item_" + count).find("option[value'"+sel+"']").prop('disabled', true);
}