我有两个 ADF 面表A,B它们的 rowSelection属性设置为“ single”。Now the requirement is when one row is selected from A, it should clear out all selections from Band vice versa . 所以我已经selectionListeners在两个表上注册,并且在该方法中执行的代码正在为尚未选择的表执行以下操作:
tablenNotSelected.setSelectedRowKeys(null);
我在这里想念什么?