$ (document) .ready (functie () {
$ („.text“) .change (functie (gebeurtenis)
{
txtBoxCalcAmtPaid ();
});
});
functie txtBoxCalcAmtPaid () {
//When de gebruiker verandert het gepaste bedrag de gecontroleerde lijnpunten wordt toegevoegd aan het „Bedrag van de Betaling“ textbox
var som = 0;
$.each ($ („.check“), functie (I, v)
{
var theElement = $(v);
als (v.checked)
{
var theValue = theElement.val ();
som += parseFloat (document.getElementById („txtAmountPaid“ + theValue) .value);
}
anders
{
//clear het txtAmountPaidgebied als checkbox niet wordt gecontroleerd
var theValue = theElement.val ();
document.getElementById („txtAmountPaid“ + theValue) .value = '';
}
});
document.getElementById („txtPaymentAmt“) .value = FormatCurrency (som);
}
|