带数组列表的每个问题的布尔值

时间:2018-09-24 22:02:21

标签: javascript jquery arrays json boolean

一个具有倍数“选定”问题的变量与“雇员”有关。 当打开时,系统将显示所有问题,无论我按什么按钮,都将向我显示一名雇员,然后我将选择一个(例如:第一个问题的Brian),然后选择“肯定”。 当我单击第二个问题时,已经选择了Brian。这是我的问题。 仅应在一个问题中选择,并对所有问题进行标记。

布尔值有什么问题吗?

var resultHandler = function(){
    currentQuestion = this;
    $('#details-name').text(currentQuestion.question);
    $('#projectPopUp').show();
};


var cancel = function() {
    //do nothing for now
}


var commenthandler = function() {
    var value = $("#" + this.id + "-comment").val();
    this.comments = value;
    $("#" + this.id + "-comment").val(value);
};


var names = [];

// bt select ppl    
var nameList = function (){

    for (var i = 0; i < employees.length; i++) {
        var name = employees[i];

        var id = i;
        var data = {
            id: 'e' +id,
            name: name
        };

        names.push(data);

        $('#detailsgrid tbody').append(Utils.processTemplate("#popupPersonTemplate tbody", data));
        $("#" + data.id + "-status").text('Select');
        $("#" + data.id + "-status").click(statusHandler.bind(data));
    }

};


var statusHandler = function(){

    var previousResult = this.inspectionResult;
    var answerIndex = answers.indexOf(previousResult);
    /** -1 is if the answer is not found if not found defaults to first answer
     * else it gets the next answer
     */
    console.log('Answer Index: ' + answerIndex);
    if (answerIndex == -1) {
        console.log('Answer index is -1');
        answerIndex = 0;
        this.active = 'false';
        updateActiveStatus(this);

    } else {
        answerIndex = (answerIndex + 1) % answers.length;
    }

    var currentResult = answers[answerIndex];
    this.inspectionResult = currentResult;

    $("#" + this.id + "-status").text(currentResult);
    // commentvisibilitymanager(this);

};


var buildQuestionnaire = function(){
    parseInitialDataHolder();

    for (var i = 0; i < ARRAY_OF_QUESTIONS.length; i++){
        var id = ARRAY_OF_QUESTIONS[i].code;
        if (id && typeof id != 'undefined'){
            id = id.replace('.', '-');
        };
        var data = {
            id: id,
            question: ARRAY_OF_QUESTIONS[i].question,
            inspectionResult: "", //defaultResults
            employee_results: [],
            active: true
        };

        var initialdata = initialdataholder[id];
        if(initialdata) {
            data = initialdata;
        }
        dataholder.push(data);

        if (typeof ARRAY_OF_QUESTIONS[i].header == 'undefined') {
            $('#questionsTable tbody').append(Utils.processTemplate("#rowTemplate tbody", data));
            $("#" + id + "-inspectionResult").text(data.inspectionResult || 'Select');
            $("#" + id + "-inspectionResult").click(resultHandler.bind(data));
            updateActiveStatus(data);
            commentvisibilitymanager(data);
        }
        else {
            $('#questionsTable tbody').append(Utils.processTemplate("#sectionRowTemplate tbody", data));
        }
    }

}

//to close the popup
var closePopup = function() {
    $('#projectPopUp').hide();
};

$(document).ready(function() {
    buildQuestionnaire();
    nameList();
});

0 个答案:

没有答案