I have a table that changes when the search criteria change and that part works well. My goal is that when the user clicks an entry on the ID column, that ID value is captured and the detail for that item will show in a section below (via another lookup).
This works pretty well until the user changes the search criteria for the table and a larger number of rows are returned than in the initial search.
Using my example above, the first search returned 5 rows and clicking the ID field worked as expected for all rows. Then I changed it to search for City Council Ordinances which returned 6 rows, and clicking the ID field in the 6th row doesn't capture the value; however, it does for rows 1-5. It seems like the javascript only fires for the number of rows returned in the first search.
Has anyone else encountered this and found a solution? Thanks for any comments!