$(‘#_QUESTIONNAIRES’).on(‘select2:select’, function (e) {
var data = e.params.data;
myQuestionnaire = data.text;
getVersion (myQuestionnaire);
$(‘#label_versionlist’).show();
$(‘#_VERSIONS’).next().show();
});
// ——————————————————
$(‘#_VERSIONS’).on(‘select2:select’, function (e) {
$(‘#label_branchlist’).show();
$(‘#_TAK’).next().show();
var data = e.params.data;
myVersion = data.text;
});
// ——————————————————
$(‘#_TAK’).on(‘select2:select’, function (e) {
document.getElementById(“btnEvaluasiestaat”).disabled = false;
var data = e.params.data;
myBranch = data.text;
});
function getVersion (questionnaire) {
$(‘#_VERSIONS’).children(‘option:not(:first)’).remove();
$.post(‘inl_sev_042_J_nvg.php’,{“QUESTIONNAIRE” : questionnaire}, function(data) {
var i;
for (i = 0; i < data.length; i++) {
text = data[i];
newOption = new Option(text, i, false, false);
$(‘#_VERSIONS’).append(newOption).trigger(‘change’);
}
}, ‘json’);
}
You must be logged in to post a comment.