root/events/phpframework/piece_framework/trunk/web/frontend/webapp/config/flows/Self.flow @ 15526

Revision 15526, 0.9 kB (checked in by kumatch, 5 years ago)

Adjusted the ajax in status update.

Line 
1# $Id: Signup.flow 1 2008-05-12 04:00:27Z kumakura $
2
3firstState: Initialize
4
5viewState:
6  - name: DisplayForm
7    view: Form
8    activity:
9      method: displayForm
10    transition:
11      - event: update
12        nextState: ProcessUpdate
13      - event: page
14        nextState: displayForm
15
16  - name: DisplayUpdateStatus
17    view: UpdateStatus
18    activity:
19      method: displayUpdateStatus
20    transition:
21      - event: update
22        nextState: ProcessUpdate
23      - event: page
24        nextState: displayForm
25
26actionState:
27  - name: Initialize
28    activity:
29      method: initialize
30    transition:
31      - event: DisplayForm
32        nextState: DisplayForm
33
34  - name: ProcessUpdate
35    activity:
36      method: processUpdate
37    transition:
38      - event: DisplayUpdateStatus
39        nextState: DisplayUpdateStatus
40
41# Local Variables:
42# mode: yaml
43# coding: iso-8859-1
44# tab-width: 4
45# indent-tabs-mode: nil
46# End:
Note: See TracBrowser for help on using the browser.