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.

Comments

Post a Comment

Popular posts from this blog

Setting up the environment for Angular2 and Hello World Example in Angular2

Build a Simple ReactJS application using react-cli

Customizing the ReactJS sample application created using react-cli