Hi, I don't know if it's correct but how is it an MVC project.
I have a jquery that performs an account when entering a value.
$(document).on("change keyup blur", "#startValue", function () {
var main = @ViewBag.sumMin;
var disc = $('#startValue').val();
var mult = (main * disc).toFixed(2);
$('#result').val(mult);
});
the previous code working
my structure
I also intended to do this account with a value in each row of a table
i try this:
UPDATE (for some reason I can't insert the code in format (permission error any help?)

I tried closing the rows but without success, does it work through a cycle going through the IDs.
Thanks for all help.