$ (dokument) .ready (funkcja () {
$(".text") .change (funkcja (wydarzenie)
{
txtBoxCalcAmtPaid ();
});
});
funkcja txtBoxCalcAmtPaid () {
//When the użytkownik zmieniać the kwota opłata the sprawdzać kreskowy rzecz dodawać the "Płatniczy Kwota" textbox
var suma = (0);
$.each ($(".check"), funkcja (i, v)
{
var theElement = $ (v);
jeżeli (v.checked)
{
var theValue = theElement.val ();
sum += parseFloat (document.getElementById ("txtAmountPaid" + theValue) .value);
}
inny
{
//clear the txtAmountPaid pole jeżeli the checkbox sprawdzać
var theValue = theElement.val ();
document.getElementById ("txtAmountPaid" + theValue) .value = '';
}
});
document.getElementById ("txtPaymentAmt") .value = FormatCurrency (suma);
}
|