Tuesday 10 May 2016

Handy code snippets - ADF

Here I am putting some handy backing bean code snippets which i got from other's blog(thank you for all of them) for my reference.

1. To remove selected row(highlighted row) in a table

        RowKeySet ps = <tableBinding>.getSelectedRowKeys();
        ps.clear();
        AdfFacesContext.getCurrentInstance().addPartialTarget(<tableBinding>);


No comments:

Post a Comment