Best way to keep track of page number on Table component

My favorite Creator component is table - with its built-in pagination and sorting. This is the best component to list data on a web browser that I have ever seen in any IDE, including non-JSF IDEs. BIG thanks to Creator Team. Great job, keep it up.

In my application, users can page through the built-in pagination in the table and they click on a particular row to view its detail in a new form/page. I have a "Close" button it the detail form that they can click to go back to the original listing table. I want the users to go back to the same page number that they were before viewing the detail page. I am trying to figure out what抯 the best way to do this. In non-JSF apps, I use query string params to track the page numbers. Is there an easier or better way?

Thanks

[792 byte] By [Sabir] at [2007-11-26 9:10:02]
# 1
Try using tableRowGroup1.getFirst() and tableRowGroup1.setFirst()For info see http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/apis/webu i/com/sun/rave/web/ui/component/TableRowGroup.html
jetsons at 2007-7-6 23:28:30 > top of Java-index,Development Tools,Java Tools...
# 2

Hello,

Was anybody able to make it work? In my case, tableRowGroup1.setFirst() does not seem to work. The first row stays unchanged although no exceptions have been raised. It looks like this property is not updatable. At least in my case.

Could anybody help?

Thanks

Slava

Slava17 at 2007-7-6 23:28:30 > top of Java-index,Development Tools,Java Tools...
# 3
http://swforum.sun.com/jive/thread.jspa?threadID=109752&tstart=0
Sabir at 2007-7-6 23:28:30 > top of Java-index,Development Tools,Java Tools...
# 4
How? When can I get those numbers and when should I set them? There is no binding for them. I guess binding them to a property in SessionBean would help, but how? Or how can I execute an action after the GO button is pressed?
Martin777 at 2007-7-6 23:28:30 > top of Java-index,Development Tools,Java Tools...