Posts

Showing posts from April, 2015

Problem of sorting of table created on transient VO based transient EO in ADF

Image
Hi All, Recently I have faced this problem like when I was clicking on the sorting icon of each column in a ADF table it was not sorting. In my case table was build based on one transient VO and the transient VO was build based on transient EO. If the table is based on read only view object and updatable view object, it is working fine. But in case of transient VO based on transient EO it was not working unfortunately. For those who doesn't know how to create transient EO you can refer the following link: http://www.code4fusion.com/2013/11/creation-of-transient-entity-object.html So I have found some work around to overcome this issue. With this approach the sorting is working perfectly. Write the following method and lines of code in you corresponding VOImpl class and expose that method in client interface as shown below:     public void setSortByProgramatic(String sortBy){         this.setSortBy(sortBy);         this....