Wiki source code of JavaScriptAPI

Version 11.3 by Vincent Massol on 2010/12/10

Hide last authors
Sergiu Dumitriu 10.1 1 {{box cssClass="floatinginfobox" title="**Contents**"}}{{toc/}}{{/box}}
Sergiu Dumitriu 9.1 2
3 = XWiki JavaScript API =
Jerome 1.1 4
Sergiu Dumitriu 9.1 5 == Observable XWiki Events ==
6
Jerome 1.1 7 Stay in touch with what happens in the wiki! XWiki will fire custom javascript events on certain moment and upon certain actions that occur in the navigation flow.
8
Sergiu Dumitriu 9.1 9 Event names are build on the following model: ##xwiki:modulename:eventname##. Your JavaScript script or extension can get notified of such an event the following way:
Jerome 1.1 10
Sergiu Dumitriu 10.1 11 {{code language="javascript"}}
12 document.observe("xwiki:modulename:eventname", function(event) {
13 // Here, do something that will be executed at the moment the event is fired
14 doSomething();
Jerome 1.1 15
Sergiu Dumitriu 10.1 16 // The event can have an option memo object to pass to its observers some information:
17 console.log(event.memo.somethingINeedToKnow);
Sergiu Dumitriu 9.1 18 });
19 {{/code}}
Jerome 1.1 20
Sergiu Dumitriu 9.1 21 Check out the real examples below, or [[read more>>http://prototypejs.org/api/element/fire]] about Prototype.js's event system
Jerome 1.1 22
Sergiu Dumitriu 9.1 23 === DOM Events (xwiki.js) ===
Jerome 1.1 24
Sergiu Dumitriu 11.1 25 * **##xwiki:dom:loaded##**
26 This event is similar to [[prototype's dom:loaded event>>http://www.prototypejs.org/api/document/observe]], with the difference that in the time-lapse between ##dom:loaded## and ##xwiki:dom:loaded##, XWiki may have transformed the DOM. Example of DOM transformations operated by XWiki is setting the right target of links that have rel="external" attribute so that the document can be XHTML valid and still have the desired effect, making internal rendering error messages expandable, insert document template handlers for links to non-existent documents, and so on. In the future there might be more transformations operated by XWiki upon DOM initialization. This event is meant for code to be notified of loading of the XWiki-transformed version of the initial DOM. As ##dom:loaded##, it can be used as follow:(((
Sergiu Dumitriu 9.1 27 {{code}}
Jerome 1.1 28 document.observe("xwiki:dom:loaded", function(){
Sergiu Dumitriu 10.1 29 // Initialization that can rely on the fact the DOM is XWiki-tranformed goes here.
Jerome 1.1 30 });
Sergiu Dumitriu 11.1 31 {{/code}})))
Sergiu Dumitriu 9.1 32 **It is recommended to bind startup scripts to this event** instead of ##window.load## or ##document.dom:loaded##.
Sergiu Dumitriu 11.1 33 * **##xwiki:dom:loading##**
Sergiu Dumitriu 9.1 34 ##xwiki:dom:loading## is sent between ##dom:loaded## and ##xwiki:dom:loaded##, before XWiki changes the DOM. This is the event that should start all scripts making important DOM changes that other scripts should see.
Sergiu Dumitriu 1.5 35
Sergiu Dumitriu 9.1 36 === Document content events (actionButtons.js) ===
Sergiu Dumitriu 3.1 37
Sergiu Dumitriu 10.1 38 * **##xwiki:document:saved##**
39 This event is sent after the document has been successfully saved in an asynchronous request (i.e. after clicking the //Save and Continue// button).
40 * **##xwiki:document:saveFailed##**
41 This event is sent when a save and continue attempt failed for some reason. The XMLHttpRequest response object is sent in the memo, as ##event.memo.response##.
Sergiu Dumitriu 3.1 42
Sergiu Dumitriu 9.1 43 === Action events (actionButtons.js) ===
Jerome 1.1 44
Sergiu Dumitriu 9.1 45 * **##xwiki:actions:cancel##**
Sergiu Dumitriu 3.2 46 This event is sent after the user clicks the "Cancel" button of an editor (Wiki, WYSIWYG, object, rights, etc.), but before actually cancelling the edit.
Sergiu Dumitriu 9.1 47 * **##xwiki:actions:preview##**
Sergiu Dumitriu 3.2 48 This event is sent after ther use clicks the "Preview" button of an editor (Wiki, WYSIWYG, object, rights, etc.), but before actually leaving the edit mode.
Sergiu Dumitriu 11.1 49 * **##xwiki:actions:save##**
50 This event is sent after the user clicks the "Save" or "Save & Continue" button of an editor (Wiki, WYSIWYG, object, rights, etc.), but before actually submitting the form. A memo is available if you need to know if the intend is to continue after the save, in ##event.memo.continue##. You can use it as follows:(((
Sergiu Dumitriu 10.1 51 {{code language="javascript"}}
Jerome 1.1 52 document.observe("xwiki:dom:loaded", function(event){
Sergiu Dumitriu 10.1 53 var doContinue = event.memo.continue;
54 if (doContinue) {
55 // do something specific
56 }
Jerome 1.1 57 });
Sergiu Dumitriu 11.1 58 {{/code}})))
Jerome 1.1 59
Sergiu Dumitriu 10.1 60 All these events contain as extra information, in the second parameter sent to event listeners (the memo), the original click event (if any, and which can be stopped to prevent the action from completing), and the form being submitted, as ##event.memo.originalEvent##, and ##event.memo.form## respectively.
Sergiu Dumitriu 1.5 61
Sergiu Dumitriu 9.1 62 === Document extra events (xwiki.js) ===
Jerome 1.1 63
Sergiu Dumitriu 11.1 64 * **##xwiki:docextra:loaded##**
65 This event is fired upon reception of the content of a document footer tab by AJAX. This event is useful if you need to operate transformations of the received content. You can filter on which tab content to operate (comments or attachment or information or ...) using the event memo. The DOM element in which the retrieved content has been injected is also passed to facilitate transformations.(((
Sergiu Dumitriu 10.1 66 {{code language="javascript"}}
Jerome 1.1 67 document.observe("xwiki:docextra:loaded", function(event){
68 var tabID = event.memo.id;
69 if (tabID == "attachments") {
70 // do something with the attachments tab retrieved content.
71 doSomething(event.memo.element);
72 }
73 });
Sergiu Dumitriu 9.1 74 {{/code}}
Sergiu Dumitriu 10.1 75 )))
Sergiu Dumitriu 9.1 76 * **##xwiki:docextra:activated##**
77 This event is fired upon activation of a tab. It differs from the loaded event since tabs are loaded only once if the user clicks going back and forth between tabs. This event will notify of each tab activation, just after the tab content is actually made visible. The tab ID is passed in the memo as for ##xwiki:docextra:loaded##
Oana Florea 4.1 78
Sergiu Dumitriu 9.1 79 === WYSIWYG events (XWikiWysiwyg.js) ===
Ecaterina Moraru (Valica) 5.1 80
Vincent Massol 11.3 81 WYSIWYG has it's own custom [[events list>>extensions:Extension.WYSIWYG Editor Module#HCustomevents]].
Ecaterina Moraru (Valica) 5.1 82
Sergiu Dumitriu 9.1 83 === Suggest events (ajaxSuggest.js) ===
Ecaterina Moraru (Valica) 8.1 84
Sergiu Dumitriu 9.1 85 * **##xwiki:suggest:selected##** (since 2.3)
Sergiu Dumitriu 11.1 86 This event is fired on the target input when a value was selected.
Ecaterina Moraru (Valica) 8.1 87
Sergiu Dumitriu 9.1 88 === Fullscreen events (fullScreenEdit.js) (since 2.5.1) ===
Oana Florea 4.1 89
Sergiu Dumitriu 11.1 90 * **##xwiki:fullscreen:entered##**
91 * **##xwiki:fullscreen:exited##**
92 * **##xwiki:fullscreen:resized##**
Ecaterina Moraru (Valica) 6.1 93
Sergiu Dumitriu 11.1 94 All events have the target DOM element in ##event.memo.target##.
95
Sergiu Dumitriu 9.1 96 === Annotations events (AnnotationCode/Settings jsx) ===
Ecaterina Moraru (Valica) 6.1 97
Sergiu Dumitriu 9.1 98 * **##xwiki:annotations:filter:changed##**
99 * **##xwiki:annotations:settings:loaded##**
Ecaterina Moraru (Valica) 6.1 100
Sergiu Dumitriu 9.1 101 === Livetable events (livetable.js) ===
Ecaterina Moraru (Valica) 6.1 102
Sergiu Dumitriu 11.1 103 * **##xwiki:livetable:newrow##** (##event.memo.row## holds the new row)
Sergiu Dumitriu 9.1 104 * **##xwiki:livetable:loadingEntries##** (since 2.3 RC1)
Sergiu Dumitriu 11.1 105 * **##xwiki:livetable:receivedEntries##** (since 2.3 RC1) (##event.memo.data## contains the received JSON data)
106 * **##xwiki:livetable:loadingComplete##** (since 2.4 M1) (##event.memo.status## contains the response status code)
Sergiu Dumitriu 9.1 107 * **##xwiki:livetable:displayComplete##** (since 2.4 M1)
108 * **##xwiki:livetable:ready##** (since 2.4.4)
Sergiu Dumitriu 11.1 109
110 The livetable sends both generic events, named as above, and events specific to each livetable, containing the table name on the third position, such as ##xwiki:livetable:alldocs:loadingEntries##. The generic event has the table name in the memo, as ##event.memo.tableId##.

Get Connected