You are viewing limited content. For full access, please sign in.

Discussion

Discussion

Stored Procedure only returning results for the first row of a table.

posted on March 3, 2016 Show version history

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?

0 0
You are not allowed to reply in this post.

Discussion 1

Sign in to reply to this post.