Reputation: 11310
In the table,
What is the wrong with the selectionListener?
Upvotes: 1
Views: 4524
Reputation: 2258
That is nothing wrong with that, it is just that after rendering the table the first row of the table is ALREADY SELECTED. You might think about a cursor, that changes position each time you select a row within the table. This action triggers the event caught by the selectionListener. But when a page first loads or is refreshed, the cursor is already positioned at the first row. It is autoselected So no action -> no event
Check this post to find an alternative: ADF Table SelectionListener on first row
Upvotes: 4