Wiki source code of Autosave Widget

Version 5.3 by Vincent Massol on 2017/09/01

Hide last authors
Manuel Smeria 2.4 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
Sergiu Dumitriu 1.1 4
Manuel Smeria 2.4 5 {{info}}
6 This is a Javascript widget bundled by default with the XWiki platform.
7 {{/info}}
8
Sergiu Dumitriu 1.1 9 The //Autosave widget// enables periodical automatic saving of a document. This widget is not mature enough yet, so by default it is enabled only in wiki mode, but it is possible to manually enable it in an application using its JS API.
10
11 Currently **WYSIWYG fields aren't supported** by the widget, but all the other form controls will be saved.
12
Manuel Smeria 2.4 13 = Usage =
Sergiu Dumitriu 1.1 14
Vincent Massol 5.1 15 {{info}}
16 To learn how to use the AutoSave feature check the [[Page Editing guide>>Features.PageEditing||anchor=HAutosave]].
17 {{/info}}
Vincent Massol 4.1 18
Manuel Smeria 2.4 19 {{warning}}
20 This API is available since XWiki 4.4 Milestone 1
21 {{/warning}}
Sergiu Dumitriu 1.1 22
Vincent Massol 5.3 23 To enable the autosave widget in an application, you can include the ##js/xwiki/editors/autosave.js## script in the sheet, along with a custom [[JSX>>platform:DevGuide.SkinExtensionsTutorial]] that initializes the widget.
Sergiu Dumitriu 1.1 24
25 In the sheet:
26
27 {{code language="none"}}
28 {{velocity}}
29 $xwiki.jsfx.use('js/xwiki/actionbuttons/actionButtons.js', true)##
30 $xwiki.jsfx.use('js/xwiki/editors/autosave.js')##
31 ## If you don't want to show the UI, then don't include the CSS file
32 $xwiki.ssfx.use('js/xwiki/editors/autosave.css')##
33 ## Use to the correct name of the sheet, or the document where the JSX is located, if not in the sheet
34 $xwiki.jsx.use('MyApplication.MyApplicationSheet')##
35 {{/velocity}}
36 {{/code}}
37
Manuel Smeria 2.4 38 {{warning}}
39 The widget depends on the ##actionbuttons.js## script, so make sure you pull that script as well **before** pulling ##autosave.js##. Even though ##actionbuttons.js## is already pulled when generating the action buttons, the call is made after the sheet content has been executed.
40 {{/warning}}
Sergiu Dumitriu 1.1 41
42 In the JSX object:
43
44 {{code language="javascript"}}
45 document.observe('xwiki:dom:loaded', function() {
46 new XWiki.editors.AutoSave({
47 form : 'inline',
48 enabled: true,
49 frequency: 1,
50 showConfigurationUI: false
51 });
52 });
53 {{/code}}
54
Manuel Smeria 2.4 55 == Parameters ==
Sergiu Dumitriu 1.1 56
57 The constructor accepts a map of parameters as its only argument, with the following property keys known (all are optional):
58
59 |=Parameter|=Description|=Default value
60 |##form##|the ID (or DOM node) to save|by default the form containing the element with the "xwikieditcontent" ID is used, which is the main form in wiki edit mode
61 |##enabled##|the initial state of the autosave|##false## - the user must click the checkbox to activate autosaving
62 |##frequency##|the interval between consecutive saves, in minutes|5
63 |##showConfigurationUI##|is the UI for configuring the autosave enabled or not|true
64 |##disabledOpacity##|the opacity of the configuration UI (the frequency input) when the autosave is disabled, a number between 0 and 1|0.2

Get Connected