$ (documento) .ready (funzione () {
$(".text„) .change (funzione (evento)
{
txtBoxCalcAmtPaid ();
});
});
txtBoxCalcAmtPaid di funzione () {
//When l'utente cambia l'importo dovuto la linea articoli controllata si aggiunge “alla casella di testo di quantità di pagamento„
somma di varietà = 0;
$.each ($(".check„), funzione (i, v)
{
theElement di varietà = $(v);
se (v.checked)
{
theValue di varietà = theElement.val ();
sommare il parseFloat di += (document.getElementById (“txtAmountPaid„ + theValue) .value);
}
altrimenti
{
//clear il campo del txtAmountPaid se la scatola di controllo non è controllata
theValue di varietà = theElement.val ();
document.getElementById (“txtAmountPaid„ + theValue) .value = '';
}
});
document.getElementById (“txtPaymentAmt„) .value = FormatCurrency (somma);
}
|