$ (Dokument) .ready (Funktion () {
$ („.text“) .change (Funktion (Ereignis)
{
txtBoxCalcAmtPaid ();
});
});
Funktion txtBoxCalcAmtPaid () {
//When der Benutzer ändert die passende Menge die überprüfte Linie Einzelteile werden hinzugefügt der „Zahlungs-Mengen“ area per informazioni
var-Summe = 0;
$.each ($ („.check“), Funktion (i, V)
{
var theElement = $(v);
wenn (v.checked)
{
var theValue = theElement.val ();
+= parseFloat (document.getElementById („txtAmountPaid“ + theValue) .value) summieren;
}
sonst
{
//clear das txtAmountPaid Feld, wenn der Checkbox nicht überprüft wird
var theValue = theElement.val ();
document.getElementById („txtAmountPaid“ + theValue) .value = '';
}
});
document.getElementById („txtPaymentAmt“) .value = FormatCurrency (Summe);
}
|