Clear selection of row of table in ADF
RowKeySet rks = empTable.getSelectedRowKeys();
if (null != rks) {
rks.clear();
}
Note: empTable is the binding of table of which you want to clear the selection of row.
if (null != rks) {
rks.clear();
}
Note: empTable is the binding of table of which you want to clear the selection of row.
thanks
ReplyDelete