Hi all,
I have a stored procedure that brings in data within a table. It works great for the first row, but if the user adds another row the procedure is not bringing in any data. Any idea why this is? My code so far is below:
css:
.autofill {display: none;}
JavaScript:
$(document).ready(function () { function autofill() { $('.autofill').trigger('click'); } $('.lookupCondition').change(autofill); });
I included these because the procedure wasn't running unless the auto fill button was pressed. This hides the auto fill button and, at least for the first row of the table, runs the procedure.
Any idea how to get this procedure to return results for all rows of the table?