$ (dokument) .ready (fungera () {
$ (”.text”) .change (fungera (händelsen)
{
txtBoxCalcAmtPaid ();
});
});
fungera txtBoxCalcAmtPaid () {
//When användaren ändrar beloppet kontrollerad fodrar rakt objekt tillfogas till ”betalningbeloppet” textbox
var-summa = 0;
$.each ($ (”.check”), fungerar (I, v)
{
var-theElement = $ (v);
om (v.checked)
{
var-theValue = theElement.val ();
sum +=-parseFloat (document.getElementById (”txtAmountPaid” + theValue) .value);
}
annars
{
//clear som txtAmountPaiden sätter in, om checkboxen inte kontrolleras
var-theValue = theElement.val ();
document.getElementById (”txtAmountPaid” + theValue) .value = '';
}
});
document.getElementById (”txtPaymentAmt”) .value = FormatCurrency (summa);
}
|