PERFORMING CALCULATIONS ON DYNAMIC TABLE ROWS
Dear Sir @willvin I appreciate your help. If possible please help me about this issue . While I was using static table the following code was working perfectly to multiply two values i-e rate & quantity and result was displayed on third field invoice_rate . But after using Dynamic Table Row it is not working. Thanks & Regards...
$(document).ready(function() { $("#ctrl-rate,#ctrl-quantity").keyup(function () { $('#ctrl-invoice_rate').val(($('#ctrl-quantity').val() * $('#ctrl-rate').val())); }); });