IhavetheattachedimagewhenIclickonthecheckbox,Icanhighlightthislineviathefollowingcode:
$("input[type='checkbox']").change(function (e) {
if ($(this).is(":checked")) {
$(this).closest('tr').addClass("highlight_row");
} else {
$(this).closest('tr').removeClass("highlight_row");
}
});
I'm tending to do that when I click two input fields that I have at the end they get the REQUIRED property. It must be something simple, but I'm skating about it. This is a line from where I can have 'n' lines.