Wednesday, December 11, 2013

OAF Search Table shows results on last page


       

OAF Search Table shows results on last page


Just find the view and execute it.
Add the following code.

    int fetchedRowCount = viewObjResult.getFetchedRowCount();
              if (fetchedRowCount > 0)
              {
                viewObjResult.setRangeStart(0);
              }

No comments:

Post a Comment