Wiki source code of Confirmation Box UI Component

Version 2.1 by Jerome on 2009/10/09

Show last authors
1 {{toc start=2 /}}
2
3 The Confirmation Box UI is an alternative to the old-fashioned browsers confirm boxes. It displays a nice popup box asking the user to confirm an action. Functions hooks are available on both confirm and cancel actions
4
5 == Usage ==
6
7 {{code}}
8 new XWiki.widgets.ConfirmationBox(behavior, interactionParameters)
9 {{/code}}
10
11 : behavior
12 ; Object that define confirm and cancel handlers. When the user chooses "Yes", its "onYes" method is triggered if it exists. When the user chooses "No", its "onNo" method is triggered, if it exists. The behavior parameter is not mandatory and is empty by default (It means nothing will happen upon confirmation or cancel).
13
14 Example :
15
16 {{code}}
17 var myBehavior = {
18 onYes: function() {
19 alert("Yes !");
20 },
21 onNo: function() {
22 alert("Oh no :(");
23 }
24 };
25 {{/code}}
26
27 : internationParameters
28 ; Object that defines the different text elements displayed with-in the confirmation box. Three variables are available for customization : **confirmationText**, the message to confirm (default value for the English language is //Are you sure ?//), **yesButtonText** the "yes" button text (or confirm button), **noButtonText** the "no" button text (or cancel button).
29
30 Example :
31
32 {{code}}
33 var myInteractionParamters = {
34 confirmationText: "Are you sure you want this wiki to engage the self-destruction process ?",
35 yesButtonText: "Yes, please do that",
36 noButtonText: "No thank you"
37 };
38 {{/code}}
39
40 == Source Code (for tag xwiki-web-2.0) ==
41
42 {{remotecode language="javascript" source="http://svn.xwiki.org/svnroot/xwiki/platform/web/tags/xwiki-web-2.0/standard/src/main/webapp/resources/uicomponents/widgets/confirmationBox.js" /}}

Get Connected