1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.field;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.krad.uif.UifConstants;
20 import org.kuali.rice.krad.uif.container.Group;
21 import org.kuali.rice.krad.uif.view.View;
22 import org.kuali.rice.krad.uif.component.Component;
23
24 import java.util.List;
25
26
27
28
29
30
31
32
33
34 public class FieldGroup extends FieldBase {
35 private static final long serialVersionUID = -505654043702442196L;
36
37 private Group group;
38
39 public FieldGroup() {
40 super();
41 }
42
43
44
45
46
47
48
49
50
51
52 @Override
53 public void performInitialization(View view, Object model) {
54 super.performInitialization(view, model);
55
56 if (StringUtils.isNotBlank(getAlign()) && group != null) {
57 group.setAlign(getAlign());
58 }
59 }
60
61 @Override
62 public void performFinalize(View view, Object model, Component parent) {
63 super.performFinalize(view, model, parent);
64
65 this.addDataAttribute("parent", parent.getId());
66 if(group != null){
67 this.addDataAttribute("group", group.getId());
68 }
69
70 setNestedComponentIdAndSuffix(getFieldLabel(), UifConstants.IdSuffixes.LABEL);
71
72 if(this.getFieldLabel() != null){
73 this.getFieldLabel().setLabelForComponentId(this.getId() + UifConstants.IdSuffixes.FIELDSET);
74 }
75 }
76
77
78
79
80 @Override
81 public List<Component> getComponentsForLifecycle() {
82 List<Component> components = super.getComponentsForLifecycle();
83
84 components.add(group);
85
86 return components;
87 }
88
89
90
91
92
93
94 public Group getGroup() {
95 return this.group;
96 }
97
98
99
100
101
102
103 public void setGroup(Group group) {
104 this.group = group;
105 }
106
107
108
109
110
111
112
113
114
115
116
117 public List<? extends Component> getItems() {
118 if (group != null) {
119 return group.getItems();
120 }
121
122 return null;
123 }
124
125
126
127
128
129
130
131
132
133
134
135 public void setItems(List<? extends Component> items) {
136 if (group != null) {
137 group.setItems(items);
138 }
139 }
140
141 }