I use WebListBox with DataSource to display data from Postgress in various WebPages of the WebApp, some lists allow multiple row selection.
When list is build and rows selected (highlighted) the label is updated to show number of rows selected. The code updating the label has starts like this:
Var vSelectedRowCount As Integer
Var vRowCount As Integer
vRowCount = AccountsListBox.RowCount
vSelectedRowCount = AccountsListBox.SelectedRowCount
The problem I see:
The subsequent call to the method that rebuilds the list using different criteria (which results with different number of entries) calls the method to update label, the label will incorrectly show number of selected rows from the previous call.
I think this is a bug. Can someone verify this for me independently before I create the issue please?