I have a two ADF faces table say A
and B
and their rowSelection
property is is set to "single
". Now the requirement is when one row is selected from A
, it should clear out all selections from B
and vice versa . So I have registered selectionListeners
on both the tables and the code that gets executed inside that method is doing the following for the table that has not been selected :
tablenNotSelected.setSelectedRowKeys(null);
What am I missing here ?
You likely need to setup the partial triggers on the table, or possibly the surrounding container, to actually force a screen update.