Hi All,
I'm trying to hide the <Add> new row button with the below code but it's not working, not sure what's missing.
$(document).ready(function () { $("#q6").on("change", function() { if($('#Field1-0').is(':checked')) { $(".cf-table-add-row").show(); } if($('#Field1-1').is(':checked')) { $(".cf-table-add-row").hide(); } }); });
Also i need some help with the code on how to set a table row read only when the radio button selection is either <YES> or <NO>
Condition 1 - If Job Status="Completed" and Add more jobs = "Yes"
Show Add button and set the filled row read only after inserting a new row.
Condition 2 - If Job Status="Completed" and Add more jobs="No"
Hide Add Button and set the filled row read only.
Thanks in advance.