1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.element;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.core.api.exception.RiceRuntimeException;
20 import org.kuali.rice.krad.datadictionary.parse.BeanTag;
21 import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
22 import org.kuali.rice.krad.datadictionary.parse.BeanTags;
23 import org.kuali.rice.krad.datadictionary.validator.ValidationTrace;
24 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
25 import org.kuali.rice.krad.uif.UifConstants;
26 import org.kuali.rice.krad.uif.UifParameters;
27 import org.kuali.rice.krad.uif.UifPropertyPaths;
28 import org.kuali.rice.krad.uif.component.Component;
29 import org.kuali.rice.krad.uif.component.ComponentSecurity;
30 import org.kuali.rice.krad.uif.container.DialogGroup;
31 import org.kuali.rice.krad.uif.container.Group;
32 import org.kuali.rice.krad.uif.field.DataField;
33 import org.kuali.rice.krad.uif.lifecycle.ViewLifecycle;
34 import org.kuali.rice.krad.uif.util.ComponentFactory;
35 import org.kuali.rice.krad.uif.util.LifecycleElement;
36 import org.kuali.rice.krad.uif.util.ScriptUtils;
37 import org.kuali.rice.krad.uif.util.UrlInfo;
38 import org.kuali.rice.krad.uif.view.ExpressionEvaluator;
39 import org.kuali.rice.krad.uif.view.FormView;
40 import org.kuali.rice.krad.uif.view.View;
41 import org.kuali.rice.krad.util.KRADUtils;
42
43 import java.util.ArrayList;
44 import java.util.HashMap;
45 import java.util.List;
46 import java.util.Map;
47
48
49
50
51
52
53 @BeanTags({@BeanTag(name = "action", parent = "Uif-Action"),
54 @BeanTag(name = "actionImage", parent = "Uif-ActionImage"),
55 @BeanTag(name = "button", parent = "Uif-PrimaryActionButton"),
56 @BeanTag(name = "secondaryButton", parent = "Uif-SecondaryActionButton"),
57 @BeanTag(name = "buttonLarge", parent = "Uif-PrimaryActionButton-Large"),
58 @BeanTag(name = "secondaryButtonLarge", parent = "Uif-SecondaryActionButton-Large"),
59 @BeanTag(name = "buttonSmall", parent = "Uif-PrimaryActionButton-Small"),
60 @BeanTag(name = "secondaryButtonSmall", parent = "Uif-SecondaryActionButton-Small"),
61 @BeanTag(name = "buttonMini", parent = "Uif-PrimaryActionButton-Mini"),
62 @BeanTag(name = "secondaryButtonMini", parent = "Uif-SecondaryActionButton-Mini"),
63 @BeanTag(name = "actionLink", parent = "Uif-ActionLink"),
64 @BeanTag(name = "navigationActionLink", parent = "Uif-NavigationActionLink"),
65 @BeanTag(name = "navigationButton", parent = "Uif-NavigationActionButton"),
66 @BeanTag(name = "secondaryNavigationActionButton", parent = "Uif-SecondaryNavigationActionButton")})
67 public class Action extends ContentElementBase {
68 private static final long serialVersionUID = 1025672792657238829L;
69
70 private String methodToCall;
71 private String actionEvent;
72 private String navigateToPageId;
73 private List<String> fieldsToSend;
74
75 private String actionScript;
76 private UrlInfo actionUrl;
77
78 private String actionLabel;
79 private boolean renderInnerTextSpan;
80
81 private Image actionImage;
82 private String actionImagePlacement;
83
84 private String iconClass;
85 private String actionIconPlacement;
86
87 private String jumpToIdAfterSubmit;
88 private String jumpToNameAfterSubmit;
89 private String focusOnIdAfterSubmit;
90
91 private boolean performClientSideValidation;
92 private boolean performDirtyValidation;
93 private boolean clearDirtyOnAction;
94 private boolean dirtyOnAction;
95
96 private String preSubmitCall;
97 private String confirmationPromptText;
98 private DialogGroup confirmationDialog;
99
100 private String dialogDismissOption;
101 private String dialogResponse;
102
103 private boolean ajaxSubmit;
104 private String ajaxReturnType;
105 private String refreshId;
106 private String refreshPropertyName;
107
108 private String successCallback;
109 private String errorCallback;
110
111 private String loadingMessageText;
112 private boolean disableBlocking;
113
114 private Map<String, String> additionalSubmitData;
115 private Map<String, String> actionParameters;
116
117 private boolean evaluateDisabledOnKeyUp;
118
119 private boolean defaultEnterKeyAction;
120
121 private boolean disabled;
122 private String disabledReason;
123 private String disabledExpression;
124 private String disabledConditionJs;
125 private List<String> disabledConditionControlNames;
126
127 private List<String> disabledWhenChangedPropertyNames;
128 private List<String> enabledWhenChangedPropertyNames;
129
130
131
132
133 public Action() {
134 super();
135
136 actionImagePlacement = UifConstants.Position.LEFT.name();
137 actionIconPlacement = UifConstants.Position.LEFT.name();
138
139 ajaxSubmit = true;
140
141 successCallback = "";
142 errorCallback = "";
143 preSubmitCall = "";
144
145 additionalSubmitData = new HashMap<String, String>();
146 actionParameters = new HashMap<String, String>();
147
148 disabled = false;
149 disabledWhenChangedPropertyNames = new ArrayList<String>();
150 enabledWhenChangedPropertyNames = new ArrayList<String>();
151 }
152
153
154
155
156
157
158
159 public void performApplyModel(Object model, LifecycleElement parent) {
160 super.performApplyModel(model, parent);
161
162 disabledExpression = this.getPropertyExpression("disabled");
163 if (disabledExpression != null) {
164 ExpressionEvaluator expressionEvaluator = ViewLifecycle.getExpressionEvaluator();
165
166 disabledExpression = expressionEvaluator.replaceBindingPrefixes(ViewLifecycle.getView(), this,
167 disabledExpression);
168 disabled = (Boolean) expressionEvaluator.evaluateExpression(this.getContext(), disabledExpression);
169 }
170
171 if (actionUrl != null) {
172 ViewLifecycle.getExpressionEvaluator().populatePropertyExpressionsFromGraph(actionUrl, false);
173 ViewLifecycle.getExpressionEvaluator().evaluateExpressionsOnConfigurable(ViewLifecycle.getView(),
174 actionUrl, this.getContext());
175 }
176
177 if (StringUtils.isNotBlank(confirmationPromptText) && (confirmationDialog != null) && StringUtils.isBlank(
178 confirmationDialog.getPromptText())) {
179 confirmationDialog.setPromptText(confirmationPromptText);
180 }
181
182 addConfirmDialogToView();
183 }
184
185
186
187
188
189 protected void addConfirmDialogToView() {
190 if (StringUtils.isBlank(confirmationPromptText) || (confirmationDialog != null)) {
191 return;
192 }
193
194 boolean containsYesNoDialog = false;
195
196 List<Group> viewDialogs = ViewLifecycle.getView().getDialogs();
197 if (viewDialogs == null) {
198 viewDialogs = new ArrayList<Group>();
199 } else {
200 for (Group dialogGroup : viewDialogs) {
201 if (StringUtils.equals(ComponentFactory.YES_NO_DIALOG, dialogGroup.getId())) {
202 containsYesNoDialog = true;
203 }
204 }
205 }
206
207 if (!containsYesNoDialog) {
208 Group confirmDialog = ComponentFactory.getYesNoDialog();
209 confirmDialog.setId(ComponentFactory.YES_NO_DIALOG);
210
211 viewDialogs.add(confirmDialog);
212 }
213 }
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229 @Override
230 public void performFinalize(Object model, LifecycleElement parent) {
231 super.performFinalize(model, parent);
232
233 View view = ViewLifecycle.getView();
234 ExpressionEvaluator expressionEvaluator = ViewLifecycle.getExpressionEvaluator();
235
236 if (StringUtils.isNotEmpty(disabledExpression)
237 && !disabledExpression.equalsIgnoreCase("true")
238 && !disabledExpression.equalsIgnoreCase("false")) {
239 disabledConditionControlNames = new ArrayList<String>();
240 disabledConditionJs = ViewLifecycle.getExpressionEvaluator().parseExpression(disabledExpression,
241 disabledConditionControlNames, this.getContext());
242 }
243
244 List<String> adjustedDisablePropertyNames = new ArrayList<String>();
245 for (String propertyName : disabledWhenChangedPropertyNames) {
246 adjustedDisablePropertyNames.add(expressionEvaluator.replaceBindingPrefixes(view, this, propertyName));
247 }
248 disabledWhenChangedPropertyNames = adjustedDisablePropertyNames;
249
250 List<String> adjustedEnablePropertyNames = new ArrayList<String>();
251 for (String propertyName : enabledWhenChangedPropertyNames) {
252 adjustedEnablePropertyNames.add(expressionEvaluator.replaceBindingPrefixes(view, this, propertyName));
253 }
254 enabledWhenChangedPropertyNames = adjustedEnablePropertyNames;
255
256
257 if (actionImage != null && StringUtils.isNotBlank(actionImagePlacement) && StringUtils.isNotBlank(actionLabel)) {
258 actionImage.setAltText("");
259 }
260
261
262 if (StringUtils.isNotBlank(iconClass) && (UifConstants.ICON_ONLY_PLACEMENT.equals(actionIconPlacement)
263 || StringUtils.isBlank(actionLabel))) {
264 getCssClasses().add(iconClass);
265
266
267 actionIconPlacement = UifConstants.ICON_ONLY_PLACEMENT;
268 }
269
270 if (!actionParameters.containsKey(UifConstants.UrlParams.ACTION_EVENT) && StringUtils.isNotBlank(actionEvent)) {
271 actionParameters.put(UifConstants.UrlParams.ACTION_EVENT, actionEvent);
272 }
273
274 if (StringUtils.isNotBlank(navigateToPageId)) {
275 actionParameters.put(UifParameters.NAVIGATE_TO_PAGE_ID, navigateToPageId);
276 if (StringUtils.isBlank(methodToCall)) {
277 this.methodToCall = UifConstants.MethodToCallNames.NAVIGATE;
278 }
279 }
280
281 if (!actionParameters.containsKey(UifConstants.CONTROLLER_METHOD_DISPATCH_PARAMETER_NAME) && StringUtils
282 .isNotBlank(methodToCall)) {
283 actionParameters.put(UifConstants.CONTROLLER_METHOD_DISPATCH_PARAMETER_NAME, methodToCall);
284 }
285
286 setupRefreshAction(view);
287
288
289 if (view instanceof FormView) {
290 performDirtyValidation = performDirtyValidation && ((FormView) view).isApplyDirtyCheck();
291 }
292
293 if (StringUtils.isBlank(getActionScript()) && (actionUrl != null) && actionUrl.isFullyConfigured()) {
294 String actionScript = ScriptUtils.buildFunctionCall(UifConstants.JsFunctions.REDIRECT, actionUrl.getHref());
295 setActionScript(actionScript);
296 }
297
298
299 if (StringUtils.isNotBlank(methodToCall)) {
300 ViewLifecycle.getViewPostMetadata().addAvailableMethodToCall(methodToCall);
301 }
302
303
304 if (isRender()) {
305 for (String additionalSubmitPath : additionalSubmitData.keySet()) {
306 ViewLifecycle.getViewPostMetadata().addAccessibleBindingPath(additionalSubmitPath);
307 }
308
309 if (StringUtils.isNotBlank(methodToCall)) {
310 ViewLifecycle.getViewPostMetadata().addAccessibleMethodToCall(methodToCall);
311 }
312 }
313
314 buildActionData(view, model, parent);
315 }
316
317
318
319
320
321
322
323 protected void setupRefreshAction(View view) {
324
325
326 if (StringUtils.isNotBlank(refreshPropertyName) || StringUtils.isNotBlank(refreshId)) {
327 ajaxReturnType = UifConstants.AjaxReturnTypes.UPDATECOMPONENT.getKey();
328 }
329
330
331
332 Component refreshComponent = null;
333 if (StringUtils.isNotBlank(refreshPropertyName)) {
334
335 if (refreshPropertyName.startsWith(UifConstants.NO_BIND_ADJUST_PREFIX)) {
336 refreshPropertyName = StringUtils.removeStart(refreshPropertyName, UifConstants.NO_BIND_ADJUST_PREFIX);
337 } else if (StringUtils.isNotBlank(view.getDefaultBindingObjectPath())) {
338 refreshPropertyName = view.getDefaultBindingObjectPath() + "." + refreshPropertyName;
339 }
340
341 DataField dataField = view.getViewIndex().getDataFieldByPath(refreshPropertyName);
342 if (dataField != null) {
343 refreshComponent = dataField;
344 refreshId = refreshComponent.getId();
345 }
346 } else if (StringUtils.isNotBlank(refreshId)) {
347 Component component = view.getViewIndex().getComponentById(refreshId);
348 if (component != null) {
349 refreshComponent = component;
350 }
351 }
352
353 if (refreshComponent != null) {
354 refreshComponent.setRefreshedByAction(true);
355 }
356 }
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371 protected void buildActionData(View view, Object model, LifecycleElement parent) {
372 HashMap<String, String> actionDataAttributes = new HashMap<String, String>();
373
374 Map<String, String> dataDefaults =
375 (Map<String, String>) (KRADServiceLocatorWeb.getDataDictionaryService().getDictionaryBean(
376 UifConstants.ACTION_DEFAULTS_MAP_ID));
377
378
379 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.AJAX_SUBMIT,
380 Boolean.toString(ajaxSubmit));
381 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
382 UifConstants.ActionDataAttributes.SUCCESS_CALLBACK, this.successCallback);
383 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.ERROR_CALLBACK,
384 this.errorCallback);
385 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
386 UifConstants.ActionDataAttributes.PRE_SUBMIT_CALL, this.preSubmitCall);
387 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
388 UifConstants.ActionDataAttributes.LOADING_MESSAGE, this.loadingMessageText);
389 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
390 UifConstants.ActionDataAttributes.DISABLE_BLOCKING, Boolean.toString(this.disableBlocking));
391 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
392 UifConstants.ActionDataAttributes.AJAX_RETURN_TYPE, this.ajaxReturnType);
393 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.REFRESH_ID,
394 this.refreshId);
395 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.VALIDATE,
396 Boolean.toString(this.performClientSideValidation));
397 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
398 UifConstants.ActionDataAttributes.DIRTY_ON_ACTION, Boolean.toString(this.dirtyOnAction));
399 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.CLEAR_DIRTY,
400 Boolean.toString(this.clearDirtyOnAction));
401 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
402 UifConstants.ActionDataAttributes.PERFORM_DIRTY_VALIDATION, Boolean.toString(
403 this.performDirtyValidation));
404 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.FIELDS_TO_SEND,
405 ScriptUtils.translateValue(this.fieldsToSend));
406
407 if (confirmationDialog != null) {
408 addDataAttribute(UifConstants.ActionDataAttributes.CONFIRM_DIALOG_ID, confirmationDialog.getId());
409 } else if (StringUtils.isNotBlank(confirmationPromptText)) {
410 addDataAttribute(UifConstants.ActionDataAttributes.CONFIRM_PROMPT_TEXT, confirmationPromptText);
411 }
412
413 if (StringUtils.isNotBlank(dialogDismissOption)) {
414 addDataAttribute(UifConstants.DataAttributes.DISMISS_DIALOG_OPTION, dialogDismissOption);
415 }
416
417 if (StringUtils.isNotBlank(dialogResponse)) {
418 addDataAttribute(UifConstants.DataAttributes.DISMISS_RESPONSE, dialogResponse);
419 }
420
421
422 Map<String, String> submitData = new HashMap<String, String>();
423 for (String key : actionParameters.keySet()) {
424 String parameterPath = key;
425 if (!key.equals(UifConstants.CONTROLLER_METHOD_DISPATCH_PARAMETER_NAME)) {
426 parameterPath = UifPropertyPaths.ACTION_PARAMETERS + "[" + key + "]";
427 }
428 submitData.put(parameterPath, actionParameters.get(key));
429 }
430
431 for (String key : additionalSubmitData.keySet()) {
432 submitData.put(key, additionalSubmitData.get(key));
433 }
434
435
436 if (focusOnIdAfterSubmit.equalsIgnoreCase(UifConstants.Order.NEXT_INPUT.toString())) {
437 focusOnIdAfterSubmit = UifConstants.Order.NEXT_INPUT.toString() + ":" + this.getId();
438 }
439
440 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.FOCUS_ID,
441 focusOnIdAfterSubmit);
442
443 if (StringUtils.isNotBlank(jumpToIdAfterSubmit)) {
444 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.ActionDataAttributes.JUMP_TO_ID,
445 jumpToIdAfterSubmit);
446 } else if (StringUtils.isNotBlank(jumpToNameAfterSubmit)) {
447 addActionDataSettingsValue(actionDataAttributes, dataDefaults,
448 UifConstants.ActionDataAttributes.JUMP_TO_NAME, jumpToNameAfterSubmit);
449 }
450
451 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.DataAttributes.SUBMIT_DATA,
452 ScriptUtils.toJSON(submitData));
453
454
455 String onClickScript = this.getOnClickScript();
456 if (StringUtils.isNotBlank(actionScript)) {
457 onClickScript = ScriptUtils.appendScript(onClickScript, actionScript);
458 } else {
459 onClickScript = ScriptUtils.appendScript(onClickScript, "actionInvokeHandler(this);");
460 }
461
462
463 if (disabled) {
464 this.addStyleClass("disabled");
465 this.setSkipInTabOrder(true);
466 }
467
468
469 addActionDataSettingsValue(actionDataAttributes, dataDefaults, UifConstants.DataAttributes.ONCLICK,
470 KRADUtils.convertToHTMLAttributeSafeString(onClickScript));
471
472 if (!actionDataAttributes.isEmpty()) {
473 this.getDataAttributes().putAll(actionDataAttributes);
474 }
475
476 this.addDataAttribute(UifConstants.DataAttributes.ROLE, UifConstants.RoleTypes.ACTION);
477
478
479 if (this.isDefaultEnterKeyAction()) {
480 this.addDataAttribute(UifConstants.DataAttributes.DEFAULT_ENTER_KEY_ACTION,
481 Boolean.toString(this.isDefaultEnterKeyAction()));
482 }
483 }
484
485
486
487
488
489
490
491
492
493
494
495 protected void addActionDataSettingsValue(Map<String, String> valueMap, Map<String, String> defaults, String key,
496 String value) {
497 if (StringUtils.isBlank(value)) {
498 return;
499 }
500
501 String defaultValue = defaults.get(key);
502 if (defaultValue == null || !value.equals(defaultValue)) {
503 valueMap.put(key, value);
504 }
505 }
506
507
508
509
510
511
512
513
514
515
516
517
518
519 @BeanTagAttribute
520 public String getMethodToCall() {
521 return this.methodToCall;
522 }
523
524
525
526
527
528
529 public void setMethodToCall(String methodToCall) {
530 this.methodToCall = methodToCall;
531 }
532
533
534
535
536
537
538
539
540
541
542
543
544 @BeanTagAttribute
545 public String getActionLabel() {
546 return this.actionLabel;
547 }
548
549
550
551
552
553
554 public void setActionLabel(String actionLabel) {
555 this.actionLabel = actionLabel;
556 }
557
558
559
560
561
562
563 @BeanTagAttribute
564 public boolean isRenderInnerTextSpan() {
565 return renderInnerTextSpan;
566 }
567
568
569
570
571
572
573 public void setRenderInnerTextSpan(boolean renderInnerTextSpan) {
574 this.renderInnerTextSpan = renderInnerTextSpan;
575 }
576
577
578
579
580
581
582
583
584
585
586
587
588
589 @BeanTagAttribute
590 public Image getActionImage() {
591 return this.actionImage;
592 }
593
594
595
596
597
598
599 public void setActionImage(Image actionImage) {
600 this.actionImage = actionImage;
601 }
602
603
604
605
606
607
608 @BeanTagAttribute
609 public String getIconClass() {
610 return iconClass;
611 }
612
613
614
615
616
617
618 public void setIconClass(String iconClass) {
619 this.iconClass = iconClass;
620 }
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636 @BeanTagAttribute
637 public String getNavigateToPageId() {
638 return this.navigateToPageId;
639 }
640
641
642
643
644
645
646 public void setNavigateToPageId(String navigateToPageId) {
647 this.navigateToPageId = navigateToPageId;
648 }
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663 @BeanTagAttribute
664 public List<String> getFieldsToSend() {
665 return fieldsToSend;
666 }
667
668
669
670
671 public void setFieldsToSend(List<String> fieldsToSend) {
672 this.fieldsToSend = fieldsToSend;
673 }
674
675
676
677
678
679
680
681
682
683
684
685
686 @BeanTagAttribute
687 public String getActionEvent() {
688 return actionEvent;
689 }
690
691
692
693
694
695
696 public void setActionEvent(String actionEvent) {
697 this.actionEvent = actionEvent;
698 }
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719 @BeanTagAttribute
720 public Map<String, String> getAdditionalSubmitData() {
721 return additionalSubmitData;
722 }
723
724
725
726
727
728
729 public void setAdditionalSubmitData(Map<String, String> additionalSubmitData) {
730 this.additionalSubmitData = additionalSubmitData;
731 }
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749 @BeanTagAttribute
750 public Map<String, String> getActionParameters() {
751 return this.actionParameters;
752 }
753
754
755
756
757
758
759 public void setActionParameters(Map<String, String> actionParameters) {
760 this.actionParameters = actionParameters;
761 }
762
763
764
765
766
767
768
769 public void addActionParameter(String parameterName, String parameterValue) {
770 if (actionParameters == null) {
771 this.actionParameters = new HashMap<String, String>();
772 }
773
774 this.actionParameters.put(parameterName, parameterValue);
775 }
776
777
778
779
780
781
782
783 public String getActionParameter(String parameterName) {
784 return this.actionParameters.get(parameterName);
785 }
786
787
788
789
790
791
792 public ActionSecurity getActionSecurity() {
793 return (ActionSecurity) super.getComponentSecurity();
794 }
795
796
797
798
799
800
801 @Override
802 public void setComponentSecurity(ComponentSecurity componentSecurity) {
803 if ((componentSecurity != null) && !(componentSecurity instanceof ActionSecurity)) {
804 throw new RiceRuntimeException("Component security for Action should be instance of ActionSecurity");
805 }
806
807 super.setComponentSecurity(componentSecurity);
808 }
809
810
811
812
813 @Override
814 protected void initializeComponentSecurity() {
815 if (getComponentSecurity() == null) {
816 setComponentSecurity(KRADUtils.createNewObjectFromClass(ActionSecurity.class));
817 }
818 }
819
820
821
822
823
824
825 @BeanTagAttribute
826 public boolean isPerformActionAuthz() {
827 initializeComponentSecurity();
828
829 return getActionSecurity().isPerformActionAuthz();
830 }
831
832
833
834
835
836
837 public void setPerformActionAuthz(boolean performActionAuthz) {
838 initializeComponentSecurity();
839
840 getActionSecurity().setPerformActionAuthz(performActionAuthz);
841 }
842
843
844
845
846
847
848 @BeanTagAttribute
849 public boolean isPerformLineActionAuthz() {
850 initializeComponentSecurity();
851
852 return getActionSecurity().isPerformLineActionAuthz();
853 }
854
855
856
857
858
859
860 public void setPerformLineActionAuthz(boolean performLineActionAuthz) {
861 initializeComponentSecurity();
862
863 getActionSecurity().setPerformLineActionAuthz(performLineActionAuthz);
864 }
865
866
867
868
869
870
871 @BeanTagAttribute
872 public String getJumpToIdAfterSubmit() {
873 return this.jumpToIdAfterSubmit;
874 }
875
876
877
878
879
880
881
882
883
884
885
886
887 public void setJumpToIdAfterSubmit(String jumpToIdAfterSubmit) {
888 this.jumpToIdAfterSubmit = jumpToIdAfterSubmit;
889 }
890
891
892
893
894
895
896
897
898
899
900
901 @BeanTagAttribute
902 public String getJumpToNameAfterSubmit() {
903 return this.jumpToNameAfterSubmit;
904 }
905
906
907
908
909
910
911 public void setJumpToNameAfterSubmit(String jumpToNameAfterSubmit) {
912 this.jumpToNameAfterSubmit = jumpToNameAfterSubmit;
913 }
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932 @BeanTagAttribute
933 public String getFocusOnIdAfterSubmit() {
934 return this.focusOnIdAfterSubmit;
935 }
936
937
938
939
940
941
942 public void setFocusOnIdAfterSubmit(String focusOnIdAfterSubmit) {
943 this.focusOnIdAfterSubmit = focusOnIdAfterSubmit;
944 }
945
946
947
948
949
950
951 @BeanTagAttribute
952 public boolean isPerformClientSideValidation() {
953 return this.performClientSideValidation;
954 }
955
956
957
958
959
960
961 public void setPerformClientSideValidation(boolean performClientSideValidation) {
962 this.performClientSideValidation = performClientSideValidation;
963 }
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979 @BeanTagAttribute
980 public String getActionScript() {
981 return this.actionScript;
982 }
983
984
985
986
987
988
989 public void setActionScript(String actionScript) {
990 if (StringUtils.isNotBlank(actionScript) && !StringUtils.endsWith(actionScript, ";")) {
991 actionScript = actionScript + ";";
992 }
993
994 this.actionScript = actionScript;
995 }
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007 @BeanTagAttribute
1008 public UrlInfo getActionUrl() {
1009 return actionUrl;
1010 }
1011
1012
1013
1014
1015
1016
1017 public void setActionUrl(UrlInfo actionUrl) {
1018 this.actionUrl = actionUrl;
1019 }
1020
1021
1022
1023
1024
1025
1026 public void setPerformDirtyValidation(boolean performDirtyValidation) {
1027 this.performDirtyValidation = performDirtyValidation;
1028 }
1029
1030
1031
1032
1033
1034
1035 @BeanTagAttribute
1036 public boolean isPerformDirtyValidation() {
1037 return performDirtyValidation;
1038 }
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048 @BeanTagAttribute
1049 public boolean isClearDirtyOnAction() {
1050 return clearDirtyOnAction;
1051 }
1052
1053
1054
1055
1056
1057
1058 public void setClearDirtyOnAction(boolean clearDirtyOnAction) {
1059 this.clearDirtyOnAction = clearDirtyOnAction;
1060 }
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071 @BeanTagAttribute
1072 public boolean isDirtyOnAction() {
1073 return dirtyOnAction;
1074 }
1075
1076
1077
1078
1079
1080
1081 public void setDirtyOnAction(boolean dirtyOnAction) {
1082 this.dirtyOnAction = dirtyOnAction;
1083 }
1084
1085
1086
1087
1088
1089
1090 @BeanTagAttribute
1091 public boolean isDisabled() {
1092 return disabled;
1093 }
1094
1095
1096
1097
1098
1099
1100 public void setDisabled(boolean disabled) {
1101 this.disabled = disabled;
1102 }
1103
1104
1105
1106
1107
1108
1109
1110
1111 @BeanTagAttribute
1112 public String getDisabledReason() {
1113 return disabledReason;
1114 }
1115
1116
1117
1118
1119
1120
1121 public void setDisabledReason(String disabledReason) {
1122 this.disabledReason = disabledReason;
1123 }
1124
1125
1126
1127
1128
1129
1130 @BeanTagAttribute
1131 public String getActionImagePlacement() {
1132 return actionImagePlacement;
1133 }
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143 public void setActionImagePlacement(String actionImagePlacement) {
1144 this.actionImagePlacement = actionImagePlacement;
1145 }
1146
1147
1148
1149
1150
1151
1152 @BeanTagAttribute
1153 public String getActionIconPlacement() {
1154 return actionIconPlacement;
1155 }
1156
1157
1158
1159
1160
1161
1162 public void setActionIconPlacement(String actionIconPlacement) {
1163 this.actionIconPlacement = actionIconPlacement;
1164 }
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187 @BeanTagAttribute
1188 public String getPreSubmitCall() {
1189 return preSubmitCall;
1190 }
1191
1192
1193
1194
1195
1196
1197 public void setPreSubmitCall(String preSubmitCall) {
1198 this.preSubmitCall = preSubmitCall;
1199 }
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210 public String getConfirmationPromptText() {
1211 return confirmationPromptText;
1212 }
1213
1214
1215
1216
1217 public void setConfirmationPromptText(String confirmationPromptText) {
1218 this.confirmationPromptText = confirmationPromptText;
1219 }
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229 public DialogGroup getConfirmationDialog() {
1230 return confirmationDialog;
1231 }
1232
1233
1234
1235
1236 public void setConfirmationDialog(DialogGroup confirmationDialog) {
1237 this.confirmationDialog = confirmationDialog;
1238 }
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256 public String getDialogDismissOption() {
1257 return dialogDismissOption;
1258 }
1259
1260
1261
1262
1263 public void setDialogDismissOption(String dialogDismissOption) {
1264 this.dialogDismissOption = dialogDismissOption;
1265 }
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279 public String getDialogResponse() {
1280 return dialogResponse;
1281 }
1282
1283
1284
1285
1286 public void setDialogResponse(String dialogResponse) {
1287 this.dialogResponse = dialogResponse;
1288 }
1289
1290
1291
1292
1293
1294
1295
1296 @BeanTagAttribute
1297 public boolean isAjaxSubmit() {
1298 return ajaxSubmit;
1299 }
1300
1301
1302
1303
1304
1305
1306 public void setAjaxSubmit(boolean ajaxSubmit) {
1307 this.ajaxSubmit = ajaxSubmit;
1308 }
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321 @BeanTagAttribute
1322 public String getAjaxReturnType() {
1323 return this.ajaxReturnType;
1324 }
1325
1326
1327
1328
1329
1330
1331 public void setAjaxReturnType(String ajaxReturnType) {
1332 this.ajaxReturnType = ajaxReturnType;
1333 }
1334
1335
1336
1337
1338
1339
1340 @BeanTagAttribute
1341 public boolean isDisplayResponseInLightBox() {
1342 return StringUtils.equals(this.ajaxReturnType, UifConstants.AjaxReturnTypes.DISPLAYLIGHTBOX.getKey());
1343 }
1344
1345
1346
1347
1348
1349
1350 public void setDisplayResponseInLightBox(boolean displayResponseInLightBox) {
1351 if (displayResponseInLightBox) {
1352 this.ajaxReturnType = UifConstants.AjaxReturnTypes.DISPLAYLIGHTBOX.getKey();
1353 }
1354
1355 else if (StringUtils.equals(this.ajaxReturnType, UifConstants.AjaxReturnTypes.DISPLAYLIGHTBOX.getKey())) {
1356 this.ajaxReturnType = UifConstants.AjaxReturnTypes.UPDATEPAGE.getKey();
1357 }
1358 }
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379 @BeanTagAttribute
1380 public String getSuccessCallback() {
1381 return successCallback;
1382 }
1383
1384
1385
1386
1387
1388
1389 public void setSuccessCallback(String successCallback) {
1390 this.successCallback = successCallback;
1391 }
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413 @BeanTagAttribute
1414 public String getErrorCallback() {
1415 return errorCallback;
1416 }
1417
1418
1419
1420
1421
1422
1423 public void setErrorCallback(String errorCallback) {
1424 this.errorCallback = errorCallback;
1425 }
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437 @BeanTagAttribute
1438 public String getRefreshId() {
1439 return refreshId;
1440 }
1441
1442
1443
1444
1445
1446
1447 public void setRefreshId(String refreshId) {
1448 this.refreshId = refreshId;
1449 }
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467 @BeanTagAttribute
1468 public String getRefreshPropertyName() {
1469 return refreshPropertyName;
1470 }
1471
1472
1473
1474
1475
1476
1477 public void setRefreshPropertyName(String refreshPropertyName) {
1478 this.refreshPropertyName = refreshPropertyName;
1479 }
1480
1481
1482
1483
1484
1485
1486 @BeanTagAttribute
1487 public String getLoadingMessageText() {
1488 return loadingMessageText;
1489 }
1490
1491
1492
1493
1494
1495
1496 public void setLoadingMessageText(String loadingMessageText) {
1497 this.loadingMessageText = loadingMessageText;
1498 }
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515 @BeanTagAttribute
1516 public boolean isDisableBlocking() {
1517 return disableBlocking;
1518 }
1519
1520
1521
1522
1523
1524
1525 public void setDisableBlocking(boolean disableBlocking) {
1526 this.disableBlocking = disableBlocking;
1527 }
1528
1529
1530
1531
1532
1533
1534 @BeanTagAttribute
1535 public boolean isEvaluateDisabledOnKeyUp() {
1536 return evaluateDisabledOnKeyUp;
1537 }
1538
1539
1540
1541
1542
1543
1544 public void setEvaluateDisabledOnKeyUp(boolean evaluateDisabledOnKeyUp) {
1545 this.evaluateDisabledOnKeyUp = evaluateDisabledOnKeyUp;
1546 }
1547
1548
1549
1550
1551
1552
1553 @BeanTagAttribute(name = "defaultEnterKeyAction")
1554 public boolean isDefaultEnterKeyAction() {
1555 return this.defaultEnterKeyAction;
1556 }
1557
1558
1559
1560
1561 public void setDefaultEnterKeyAction(boolean defaultEnterKeyAction) {
1562 this.defaultEnterKeyAction = defaultEnterKeyAction;
1563 }
1564
1565
1566
1567
1568
1569
1570 public String getDisabledConditionJs() {
1571 return disabledConditionJs;
1572 }
1573
1574
1575
1576
1577
1578
1579 protected void setDisabledConditionJs(String disabledConditionJs) {
1580 this.disabledConditionJs = disabledConditionJs;
1581 }
1582
1583
1584
1585
1586
1587
1588 public List<String> getDisabledConditionControlNames() {
1589 return disabledConditionControlNames;
1590 }
1591
1592
1593
1594
1595
1596
1597 public void setDisabledConditionControlNames(List<String> disabledConditionControlNames) {
1598 this.disabledConditionControlNames = disabledConditionControlNames;
1599 }
1600
1601
1602
1603
1604
1605
1606 @BeanTagAttribute
1607 public List<String> getDisabledWhenChangedPropertyNames() {
1608 return disabledWhenChangedPropertyNames;
1609 }
1610
1611
1612
1613
1614
1615
1616 public void setDisabledWhenChangedPropertyNames(List<String> disabledWhenChangedPropertyNames) {
1617 this.disabledWhenChangedPropertyNames = disabledWhenChangedPropertyNames;
1618 }
1619
1620
1621
1622
1623
1624
1625 @BeanTagAttribute
1626 public List<String> getEnabledWhenChangedPropertyNames() {
1627 return enabledWhenChangedPropertyNames;
1628 }
1629
1630
1631
1632
1633
1634
1635 public void setEnabledWhenChangedPropertyNames(List<String> enabledWhenChangedPropertyNames) {
1636 this.enabledWhenChangedPropertyNames = enabledWhenChangedPropertyNames;
1637 }
1638
1639
1640
1641
1642
1643
1644 protected void setDisabledExpression(String disabledExpression) {
1645 this.disabledExpression = disabledExpression;
1646 }
1647
1648
1649
1650
1651 @Override
1652 public void completeValidation(ValidationTrace tracer) {
1653 tracer.addBean(this);
1654
1655
1656 if (getJumpToIdAfterSubmit() != null && getJumpToNameAfterSubmit() != null) {
1657 String currentValues[] = {"jumpToIdAfterSubmit =" + getJumpToIdAfterSubmit(),
1658 "jumpToNameAfterSubmit =" + getJumpToNameAfterSubmit()};
1659 tracer.createWarning("Only 1 jumpTo property should be set", currentValues);
1660 }
1661 super.completeValidation(tracer.getCopy());
1662 }
1663 }