Background: Two List Views exist on a Form bound using the same smartobject. When the user clicks a row on View 1, javascript is triggered in View 2 to find row with same ID and then triggers the ListItem Click event of View 2. This works well.
Problem: Both views have paging enabled, so if user moves focus of View 1 to Next or Previous Page, the two views are now out of sync. So the Javascript fails because the ID of row in View 1 is not to be found in View 2.
Question: What technique can be used to keep View1 and View2 in sync if user clicks on the Next or Previous buttons of a List View. In other words, how can I execute the corresponding Next/Previos buttons in the other View, or how can I simulate the same results using rules on the view being clicked? Is there any way to detect the event and respond to it?