$ (documento) .ready (función () {
$ (“.text”) .change (función (acontecimiento)
{
txtBoxCalcAmtPaid ();
});
});
txtBoxCalcAmtPaid de la función () {
//When el usuario cambia la cantidad debida la línea artículos comprobada se agrega “al textbox de la cantidad del pago”
suma del var = 0;
$.each ($ (“.check”), función (i, v)
{
theElement del var = $(v);
si (v.checked)
{
theValue del var = theElement.val ();
sumar el parseFloat de += (document.getElementById (“txtAmountPaid” + theValue) .value);
}
{
//clear el campo del txtAmountPaid si el checkbox no se comprueba
theValue del var = theElement.val ();
document.getElementById (“txtAmountPaid” + theValue) .value = '';
}
});
document.getElementById (“txtPaymentAmt”) .value = FormatCurrency (suma);
}
|