1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package edu.sampleu.travel.krad.controller; |
17 | |
|
18 | |
import javax.servlet.http.HttpServletRequest; |
19 | |
import javax.servlet.http.HttpServletResponse; |
20 | |
|
21 | |
import org.kuali.rice.krad.uif.UifParameters; |
22 | |
import org.kuali.rice.krad.util.GlobalVariables; |
23 | |
import org.kuali.rice.krad.web.controller.UifControllerBase; |
24 | |
import org.kuali.rice.krad.web.form.UifFormBase; |
25 | |
import org.springframework.stereotype.Controller; |
26 | |
import org.springframework.validation.BindingResult; |
27 | |
import org.springframework.web.bind.annotation.ModelAttribute; |
28 | |
import org.springframework.web.bind.annotation.RequestMapping; |
29 | |
import org.springframework.web.bind.annotation.RequestMethod; |
30 | |
import org.springframework.web.servlet.ModelAndView; |
31 | |
|
32 | |
import edu.sampleu.travel.krad.form.UILayoutTestForm; |
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | 0 | @Controller |
40 | |
@RequestMapping(value = "/uicomponents") |
41 | 0 | public class UIComponentsTestController extends UifControllerBase { |
42 | |
|
43 | |
@Override |
44 | |
protected UILayoutTestForm createInitialForm(HttpServletRequest request) { |
45 | 0 | return new UILayoutTestForm(); |
46 | |
} |
47 | |
|
48 | |
@Override |
49 | |
@RequestMapping(params = "methodToCall=start") |
50 | |
public ModelAndView start(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result, |
51 | |
HttpServletRequest request, HttpServletResponse response) { |
52 | 0 | UILayoutTestForm uiTestForm = (UILayoutTestForm) form; |
53 | |
|
54 | 0 | return super.start(uiTestForm, result, request, response); |
55 | |
} |
56 | |
|
57 | |
@RequestMapping(method = RequestMethod.POST, params = "methodToCall=save") |
58 | |
public ModelAndView save(@ModelAttribute("KualiForm") UILayoutTestForm uiTestForm, BindingResult result, |
59 | |
HttpServletRequest request, HttpServletResponse response) { |
60 | |
|
61 | 0 | return getUIFModelAndView(uiTestForm, uiTestForm.getViewId(), "page2"); |
62 | |
} |
63 | |
|
64 | |
@RequestMapping(method = RequestMethod.POST, params = "methodToCall=close") |
65 | |
public ModelAndView close(@ModelAttribute("KualiForm") UILayoutTestForm uiTestForm, BindingResult result, |
66 | |
HttpServletRequest request, HttpServletResponse response) { |
67 | |
|
68 | 0 | return getUIFModelAndView(uiTestForm, uiTestForm.getViewId(), "page1"); |
69 | |
} |
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
@RequestMapping(method = RequestMethod.POST, params = "methodToCall=navigate") |
75 | |
public ModelAndView navigate(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result, |
76 | |
HttpServletRequest request, HttpServletResponse response) { |
77 | 0 | String pageId = form.getActionParamaterValue(UifParameters.NAVIGATE_TO_PAGE_ID); |
78 | |
|
79 | 0 | if(pageId.equals("uifpage7")){ |
80 | 0 | GlobalVariables.getMessageMap().putError("gField1", "serverTestError"); |
81 | 0 | GlobalVariables.getMessageMap().putError("gField1", "serverTestError2"); |
82 | 0 | GlobalVariables.getMessageMap().putError("gField2", "serverTestError"); |
83 | 0 | GlobalVariables.getMessageMap().putError("gField3", "serverTestError"); |
84 | 0 | GlobalVariables.getMessageMap().putWarning("gField1", "serverTestWarning"); |
85 | 0 | GlobalVariables.getMessageMap().putWarning("gField2", "serverTestWarning"); |
86 | 0 | GlobalVariables.getMessageMap().putInfo("gField2", "serverTestInfo"); |
87 | 0 | GlobalVariables.getMessageMap().putInfo("gField3", "serverTestInfo"); |
88 | |
} |
89 | |
|
90 | 0 | form.setRenderFullView(false); |
91 | |
|
92 | 0 | return getUIFModelAndView(form, form.getViewId(), pageId); |
93 | |
} |
94 | |
} |