I have a form with 2 tables on it and I am trying to hide the add row button for only one of them.
I tried using
$('#q52').hide();
and it didn't work.
The only things that I have found that do semi-work is adding
.cf-table-add-row {display:none !important;}
to the css, but that hides the add button on both tables. Alternatively i also tried
$('#q52').remove();
that deleted the add button but also made the lookup stop working to autopopulate the rows
Does anybody know of a way i can hide just the one add button?