Ho un evento di cambiamento che sta funzionando bene ma devo farlo ricorrere.
Quindi ho una funzione che viene attivata al momento del cambiamento che "cambierà" altri menu a discesa in base a un selettore di classe (notare "menu a discesa S", potrebbe essercene più di uno). Questa modifica del proxy non attiva la funzione e quindi non riesce. Come posso farlo funzionare?
Codice
$(document).ready(function () {
var activeDropBox = null;
$("select.drop-box").change(function () {
var questionId = $(this).attr("questionId");
var selectedAnswer = $(this).val();
activeDropBox = this;
alert(this.questionId);
$.ajax(
{
type: "POST",
url: answerChangedActionUrl,
data: { questionId: questionId, selectedValue: selectedAnswer },
success: function (data) {
SetElementVisibility(data.ShowElement, questionId);
}, error: function (XMLHttpRequest, textStatus, errorThrown) {
alert('XMLHttpRequest:' + XMLHttpRequest.responseText);
alert('textStatus:' + textStatus);
alert('errorThrown:' + errorThrown);
}
});
});
function SetElementVisibility(visible, questionId) {
// I would like each child to then trigger the change event...
$(".childOf" + questionId)[visible ? 'show' : 'hide']('slow');
// Suggested code
//$(".childOf" + questionId + " select").trigger("change");
if (!visible) {
$(".childOf" + questionId + " select").attr('selectedIndex', 0);
}
}
}
I suggerimenti finora sembrano funzionare, ma poiché l'evento change attiva un post Ajax, ora sembra non riuscire qui. Ci giocherò ma è qualcosa per un'altra domanda che sento.