|
Hi anyeone,
It's been ages since your post but I hope this helps.
I'm working with the most recent version of the pageflow app block from wcsfcontrib. Checking through the documentation shows that
if the pageflow is constrained, you must call the navigate and next methods on the pageflow and redirecttocurrentpage to move from page to page.
I'm guessing you've configured your pageflow to be unconstrained. In this case, simply navigating to a page just sets the current stage/page in the pageflow.
In the same vein, if you want to 'restart' the pageflow, unless you've made changes to the pageflow, you can simply delete the contents of the instancestate and pageflow_instancestore tables.
Otherwise, you can simply 'resume' the pageflow or just navigate to the first page in the workflow - pageflow should auto start the pageflow for you. (if an unconstrained pageflow).
dmccarthy,
You need to define a default transition on the pagestate you're on for IPageFlow.Next() to work or explicitly mention the name of the view i.e. IPageFlow.Navigate("ViewName");
Hope this helps...
|