Wiki source code of Confirmation Box UI Component
Show last authors
author | version | line-number | content |
---|---|---|---|
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. | ||
29 | |||
30 | == Source Code (for tag xwiki-web-2.0) == | ||
31 | |||
32 | {{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" /}} |