I have a Table that is filled by an MSSQL database. You are able to select the table rows which brings up information to other parts of the window. The issue i am facing is that anytime a new entry in the table is selected, it seems to refresh the table 5-6 times. This wouldn't be a problem except for when there is navigation from another page that sets the selected row of the table.
The script that i am using sets the table's selected row using:
event.source.parent.getComponent('loop_list').setSelectedRow(rowIndex)
When i add a print statement to the propertyChange of the table itself and tell it to print out what the selected row of the table currently is, it will say the correctly passed selected row index 2 times then it will revert to some other selected row and print it out 6-8 times.
Any ideas why the table just reverts itself to some other selected row?