Version 118.1 by Michael Hamann on 2021/10/07

Hide last authors
Ricardo Rodríguez 52.1 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
Vincent Massol 1.1 4
Michael Hamann 117.3 5 {{info}}
6 This page is a draft for [[Creating a FAQ Application (Manual) >> Documentation.DevGuide.Tutorials.FAQTutorial.FAQTutorialManual]]. The rework should be completed until 2021-10-08.
7 {{/info}}
8
Ecaterina Moraru (Valica) 102.1 9 This tutorial will show you how to build a Frequently Asked Questions (FAQs) [[Application>>platform:Features.Applications]] much like the one you can find on the [[FAQ page>>FAQ.WebHome]]. This is a very simple application that makes use of XWiki's [[classes, properties, and objects>>platform:DevGuide.DataModel||anchor="HXWikiClasses2CObjects2CandProperties"]]. It also uses a technique that you may frequently use as the basis for several different kinds of applications.
Vincent Massol 96.1 10
Ecaterina Moraru (Valica) 105.1 11 {{info}}
Fawad Ali 117.1 12 It's also possible to follow this tutorial as a [[video tutorial on Youtube>>https://youtu.be/tIzASeJb2Bs]].
Ecaterina Moraru (Valica) 105.1 13 {{/info}}
Vincent Massol 103.1 14
Vincent Massol 96.1 15 = Prerequisites for following the tutorial =
16
Vincent Massol 95.1 17 {{warning}}
Ecaterina Moraru (Valica) 102.1 18 If you've already followed the [[AWM FAQ Tutorial>>Documentation.DevGuide.FAQTutorial.FAQTutorialAWM]] or installed the [[FAQ Application>>extensions:Extension.FAQ Application]] you'll need to do one of 2 things before you can take this tutorial:
Fawad Ali 117.1 19
Vincent Massol 95.1 20 * Delete the ##FAQ## space (if you've followed the AWM FAQ Tutorial) or uninstall the FAQ Application (if you've installed the FAQ Application)
21 * or simply follow the tutorial below but replace the space ##FAQ## with another value everywhere it's used. For example use ##MyFAQ## as the space name instead.
22 {{/warning}}
23
Vincent Massol 101.3 24 You should have [[installed XWiki>>platform:AdminGuide.Installation]] and have a [[basic understanding of how to use it>>platform:Features.WebHome]].
Vincent Massol 54.2 25
Vincent Massol 101.3 26 All through this tutorial you should refer to the [[XWiki Data Model>>platform:DevGuide.DataModel]] for information on XWiki's data model. You might also use the [[XWiki Scripting Guide>>platform:DevGuide.Scripting]] to get you started with scripting in XWiki and manipulating XWiki objects. In addition, this tutorial will introduce the concepts of Authoring Templates and Page Design Sheets, patterns that you will find particularly useful in creating XWiki applications. Completing this tutorial is a recommended prerequisite for anyone who wants to build custom applications on the XWiki engine.
Vincent Massol 54.3 27
Vincent Massol 100.3 28 {{warning}}
Ecaterina Moraru (Valica) 101.4 29 Make sure that your user is an [[Advanced user>>platform:Features.PageEditing||anchor="HAdvancedMode"]] before following this tutorial since you'll need for example to use the wiki editor (##Wiki > Edit## menu).
Vincent Massol 100.2 30 {{/warning}}
31
Silvia Macovei 48.2 32 = Application Overview =
Vincent Massol 1.1 33
Guillaume Lerouge 42.1 34 The FAQ application allows users to post a question by entering the question into a simple form field and then submitting the form. The question then appears in a list along with all other questions that have been previously posted. Users can click on the questions to view both the question and answer in a consistently styled view. If the question has not yet been answered, any user can post an answer to the question by editing the page. In edit mode, the page will display a web form that is the same for every FAQ page.
Vincent Massol 1.1 35
Manuel Smeria 80.1 36 Let us begin by taking a look at what we are going to build. The new application will have the following views:
Vincent Massol 1.1 37
Vincent Massol 112.1 38 * The FAQ [[Class>>FAQ.WhatIsAClass]](((
Vincent Massol 111.1 39 {{image reference="FAQsSummary.png"/}}
Vincent Massol 112.1 40 )))
41
Marius Dumitru Florea 115.1 42 * An FAQ entry in View mode (notice that the properties can be edited in-place starting with XWiki 12.4RC1)(((
Vincent Massol 111.1 43 {{image reference="FAQSheetView.PNG"/}}
Vincent Massol 112.1 44 )))
45 * An FAQ entry in Edit mode(((
Vincent Massol 111.1 46 {{image reference="FAQSheetEdit.PNG"/}}
Vincent Massol 112.1 47 )))
Hassan Ali 110.1 48
Silvia Macovei 48.2 49 = Authoring Templates and Page Design Sheets =
Silvia Macovei 48.1 50
Anca Luca 14.1 51 An Authoring Template is a template for creating documents of a specific type. Unlike a regular content page in edit mode with one field for freeform editing, an Authoring Template presents a custom set of form fields for creating a document with specific type of data. These form elements are defined by the properties of a class.
Vincent Massol 1.1 52
Silvia Macovei 48.1 53 In object oriented programming, remember that a //class// is a template for an object. Using the analogy of a cookie cutter, the //class// is the //cookie cutter// and the //objects// are the actual //cookies//. An Authoring Template provides one way to represent a class visually so that users can fill out a form to set unique properties (values in form fields). When the user submits the form, they are creating a unique //object// of the //class// type.
Vincent Massol 1.1 54
Anca Luca 14.1 55 Precisely, an Authoring Template is a prototype document used to create other specific instances of documents of the same type, along with a method of exposing the creation process to the user: the properties edit form. Remember that a XWiki Document can contain objects and this is the case of an authoring template: it is a XWiki Document with an empty object of a specific class, which is duplicated to create more and more documents based on that model, using the data inserted by the user in the editing form as specific values for the particular object instance in the current copy.
Vincent Massol 1.1 56
Silvia Macovei 31.6 57 The Page Design Sheet is like a style sheet that defines what each document will look like when rendered. Even though the unique object instances will have different values for their properties, they will always have a consistent presentation display because they will be rendered through the Page Design Sheet. The XWiki API available in scripting languages provides a mechanism that will help us use the same sheet for both editing and view modes. We will see how we can achieve this once we get to the FAQ Design Sheet section.
Vincent Massol 1.1 58
Silvia Macovei 48.2 59 = Go to the Class Editor Wizard =
Silvia Macovei 31.6 60
Bart Kummel 104.1 61 Five pages, which collectively make up a [[XClass application>>extensions:Extension.XClass Application]] (a.k.a Class Wizard or Class Editor Wizard), have been developed to assist you in this process. Those page are technical pages hidden by default. To navigate to the wizard home page, go to your profile page, select the Preferences tab, edit the page and choose to view Hidden Documents. Enter a search query for the keyword "XWikiClasses". This should return a document called ##XWikiClasses## in the ##XWiki## space (i.e. ##XWiki.XWikiClasses##). (Note that the //title// of this document is "Data types".) This is the homepage of the class wizard creator: you are now ready to start building your FAQs application.
Vincent Massol 1.1 62
Silvia Macovei 48.2 63 = Create the FAQ Class =
Vincent Massol 1.1 64
Vincent Massol 111.1 65 * On the Class Editor wizard entry page (XWiki.XWikiClasses), under the heading "Create a new data type", in the "Title" field, enter ##FAQ## as the name of the page to create:(((
Vincent Massol 84.3 66 {{image reference="CreateANewClass1.png"/}}
Silvia Macovei 48.4 67 )))
Vincent Massol 96.2 68 * As you can see in the Breadcrumb below the new page will be created at location ##XWiki > FAQ##. In practice the Class Wizard will automatically prefix the page name with ##Class## (you could also enter ##FAQClass## as the page name directly).
Vincent Massol 111.1 69 * Now it would be nice to have it created in a new location such as ##FAQ > FAQ Class##. Since the ##FAQ## parent doesn't exist we cannot use the Tree picker button. Thus click the Pencil button as shown in the following image and replace ##XWiki## by ##FAQ##.(((
Vincent Massol 84.3 70 {{image reference="CreateANewClass2.png"/}}
71 )))
Vincent Massol 96.2 72 * In technical terms you're creating a page named ##FAQClass## (with a title of "FAQ Class") located in a space also called ##FAQ## and thus the technical reference is ##FAQ.FAQClass##.
Manuel Smeria 80.1 73 * Click the "Create this Class" button. You should then see a page with the following content:(((
Silvia Macovei 48.1 74 {{code language="none"}}
Silvia Macovei 41.1 75 {{velocity}}
Jean SIMARD 60.6 76 ## Replace the default space with the space where you want your documents to be created.
Silvia Macovei 41.1 77 ## Replace the default parent with the one of your choice and save the document.
78 ##
Jean SIMARD 60.6 79 #set($defaultSpace = $doc.space)
80 #set($defaultParent = $doc.fullName)
Silvia Macovei 41.1 81 {{/velocity}}
Silvia Macovei 48.1 82 {{/code}}
Silvia Macovei 48.4 83 )))
Anca Luca 14.1 84
Manuel Smeria 80.1 85 In the code, change the word "$doc.space" with the name of the space where you want you FAQ pages to be created as the commented instructions in the page code suggest.
86 The line of code should look like this:
Vincent Massol 1.1 87
Ricardo Rodríguez 52.1 88 {{code language="none"}}
89 #set($defaultSpace = 'FAQ')
90 {{/code}}
Anca Luca 14.1 91
Manuel Smeria 80.1 92 You can also change the default parent of the new FAQ documents that are going to be created. To do so, replace the "$defaultParent" variable with the name of your document.
93 The line of code should look like this:
Vincent Massol 1.1 94
Ricardo Rodríguez 52.1 95 {{code language="none"}}
96 #set($defaultParent = 'FAQ.WebHome')
97 {{/code}}
Vincent Massol 1.1 98
Guillaume Lerouge 42.1 99 Click the "Save & View" button. The class is now created and you should be looking at a page titled "Class: FAQ" that looks like this:
georgosn 28.1 100
Manuel Smeria 80.1 101 {{image reference="FAQClass1.PNG"/}}
georgosn 29.1 102
Silvia Macovei 48.2 103 = Add Properties to the Class =
Vincent Massol 1.1 104
Silvia Macovei 48.3 105 Under the page title, you should see the words "The class does not have any properties yet. You can use the //__class editor__// to define them." Let's just follow those instructions!
Vincent Massol 1.1 106
Manuel Smeria 80.1 107 * Click on the 'class editor' link
Vincent Massol 92.2 108 * Note that the link trail in the header is something like "Wiki Home / FAQ / FAQ Class". This shows you that you are indeed on the FAQ class page in Class edit mode.
Vincent Massol 1.1 109
Vincent Massol 92.3 110 In our document, we'll store both a //question// and an //answer//. So we need to create a property for each of them.
Vincent Massol 1.1 111
Manuel Smeria 80.1 112 * Enter the text //question// in the "name" field
Vincent Massol 111.1 113 * Choose a TextArea type for the property and then click on "Add". The TextArea will ultimately give us a multi-line text field in our authoring template.(((
Manuel Smeria 80.1 114 {{image reference="AddQuestionProperty.PNG"/}}
Silvia Macovei 48.4 115 )))
Manuel Smeria 80.1 116 * Click on the "+" icon to expand the options for the newly created property
Vincent Massol 111.1 117 * Change the value of the "Pretty Name" field to "Question"(capital Q):(((
Manuel Smeria 80.1 118 {{image reference="QuestionProperty.PNG"/}}
Silvia Macovei 48.4 119 )))
Manuel Smeria 80.1 120 * Now create another property called //answer// the same way that you did for the previous "question" property (choose TextArea for the property type)
121 * Expand it from the property list and change the value of the "Pretty Name" field to "Answer"
122 * When you are done adding and configuring the properties, click the "Save & View" button
Vincent Massol 1.1 123
Silvia Macovei 48.2 124 = Create the Page Design Sheet =
Vincent Massol 1.1 125
Vincent Massol 111.1 126 * After the previous step you are now on the FAQClass page which should look like this:(((
Manuel Smeria 80.1 127 {{image reference="FAQClass2.PNG"/}}
Silvia Macovei 48.4 128 )))
Manuel Smeria 80.1 129 * Click the first button ("Create the document sheet") to create the document sheet (the Page Design Sheet). This sheet determines how your page's objects will be rendered to the user. The document is automatically created.
Vincent Massol 92.4 130 * You should see a warning message with the text "The sheet is not bound to the class so it won't be applied automatically when a page that has an object of this class is displayed". Click the "Bind the sheet to the class" link that appears after the text. **What this does is important**:
Ogis Tarkan 98.1 131 ** It adds an object of type ##XWiki.ClassSheetBinding## to the ##FAQ.FAQClass" document. Basically it ties the FAQ Class to the Sheet.##
Vincent Massol 92.4 132 ** **It's because of this object that users will be sent to form edition mode when editing FAQ entries**
Vincent Massol 111.1 133 * Now click on "View the sheet document". This takes you to the ##FAQ.FAQSheet## page which you can edit in wiki mode and see its default content:(((
Silvia Macovei 48.1 134 {{code language="none"}}
Silvia Macovei 41.1 135 {{velocity}}
136 ## You can modify this page to customize the presentation of your object.
137 ## At first you should keep the default presentation and just save the document.
Anca Luca 14.1 138
Marius Dumitru Florea 116.1 139 ## We have to use wiki=true because $doc.display() can produce wiki syntax.
140 {{html wiki="true" clean="false"}}
141 ## Load the JavaScript code required to make the object properties editable in-place.
142 #set ($discard = $xwiki.jsfx.use('uicomponents/edit/editableProperty.js', {
143 'forceSkinAction': true,
144 'language': $xcontext.locale
145 }))
146 #set ($editing = $xcontext.action == 'edit')
147 ## The object to display.
148 #set ($xobject = $doc.getObject('FAQ.FAQClass'))
149 ## The class that describes the object properties.
150 #set ($xclass = $xobject.xWikiClass)
151 ## Make sure the following display* method calls use the right object.
152 #set ($discard = $doc.use($xobject))
153 ## Using the xform vertical form layout.
154 <div class="xform">
155 <dl>
156 #foreach ($property in $xclass.properties)
157 <dt #if (!$editing && $hasEdit)
158 class="editableProperty"
159 #set ($xobjectPropertyReference = $xobject.getProperty($property.name).reference)
160 data-property="$escapetool.xml($services.model.serialize($xobjectPropertyReference))"
161 data-property-type="object"#end>
162 ## This must match the id generated by the $doc.display() method below.
163 #set ($propertyId = "${xclass.name}_${xobject.number}_$property.name")
164 <label#if ($editing) for="$escapetool.xml($propertyId)"#end>
165 $escapetool.xml($property.translatedPrettyName)
166 </label>
167 ## Support for specifying a translation key as hint in the property definition.
168 <span class="xHint">$!escapetool.xml($services.localization.render($property.hint))</span>
169 </dt>
170 <dd>$doc.display($property.name)</dd>
171 #end
172 #if (!$xclass.properties || $xclass.properties.size() == 0)
173 ## Keep the empty definition term in order to have valid HTML.
174 <dt></dt>
175 <dd>$escapetool.xml($services.localization.render('xclass.defaultObjectSheet.noProperties'))</dd>
176 #end
177 </dl>
178 </div>
179 {{/html}}
Silvia Macovei 41.1 180 {{/velocity}}
Silvia Macovei 48.1 181 {{/code}}
Guillaume Lerouge 42.1 182
Marius Dumitru Florea 116.1 183 Let's take a moment now and analyze this code:
Silvia Macovei 48.1 184
Marius Dumitru Florea 116.1 185 * first, it loads the JavaScript required for in-place editing
186 * then it retrieves the FAQ object from the current page and the FAQ class defintion
187 * then it iterates through all the FAQ class properties displaying:
188 ** the translated pretty name
189 ** the translated hint
190 ** the value from the FAQ object in view mode, or the form field used to input or modify the value in edit mode
191 * it uses a definition list to display the FAQ object, following the [[Vertical Form>>xwiki:Documentation.DevGuide.FrontendResources.VerticalForms.WebHome]] layout
192
193 As we mentioned, XWiki provides a mechanism that helps us create sheets used for both view and edit mode. This is the ##display## function used in the line:
194
Manuel Smeria 83.1 195 {{code language="none"}}
Marius Dumitru Florea 116.1 196 <dd>$doc.display($property.name)</dd>
Manuel Smeria 83.1 197 {{/code}}
Silvia Macovei 48.1 198
Marius Dumitru Florea 116.1 199 It detects the current mode (edit or view) and displays the property referenced by its argument as the mode dictates:
Manuel Smeria 80.1 200
Marius Dumitru Florea 116.1 201 * in view mode it will display the value of the property
202 * in edit mode it will display a form field that will allow the user to edit it
Guillaume Lerouge 42.1 203
Vincent Massol 101.3 204 This way we can use a single Design Sheet to both display and edit our FAQ entries. See the [[XWiki API reference>>platform:DevGuide.API]] and [[XWiki Scripting>>platform:DevGuide.Scripting]] pages for more details about this.
Marius Dumitru Florea 116.1 205 )))
Guillaume Lerouge 42.1 206 * Click "Save & View"
207
Silvia Macovei 48.2 208 = Create the Authoring Template =
Vincent Massol 1.1 209
Vincent Massol 111.1 210 * Navigate back to the ##FAQ.FAQClass## document (you can use the arrows in the breadcrumb to do so). The document should look like this:(((
Manuel Smeria 80.1 211 {{image reference="FAQClass3.PNG"/}}
Silvia Macovei 48.4 212 )))
Manuel Smeria 80.1 213 * Click on the "Create the document template" button. The Authoring Template will be automatically created.
Vincent Massol 1.1 214
Vincent Massol 101.3 215 Note that earlier, we changed the space name preceding the page name because we wanted all of our FAQ pages to reside in a space named FAQ. Remember that all our documents will be copies of the Authoring Template used as a prototype so the content will be copied in all our FAQs documents and will execute the Design Sheet code in the context of the current document. See the [[dedicated page>>platform:DevGuide.IncludeInVelocity]] for more information regarding this technique.
Guillaume Lerouge 42.1 216
Vincent Massol 92.8 217 Now we need to associate the prototype object with this document to turn it into a true authoring template:
218
219 * If you're on the template page, navigate back to the ##FAQ.FAQClass## document.
220 * At the bottom of the page, look for the following warning message: "The template does not contain an object of type FAQClass. Add a FAQ object to the template »."
Vincent Massol 111.1 221 * Click on "Add a FAQ object to the template »":(((
Manuel Smeria 80.1 222 {{image reference="FAQObject.png"/}}
223 )))
Manuel Smeria 83.1 224
Vincent Massol 92.8 225 Next, we want to remove the title for the newly created template:
Manuel Smeria 83.1 226
Vincent Massol 92.8 227 * Navigate to the ##FAQ.FAQTemplate## document (you can click on the "View the template page (FAQ / FAQ Template)" link for doing that for example.
Manuel Smeria 83.1 228 * Edit this document in Wiki mode
229 * Inside the Title field you have "FAQ Template" written -> delete this text
230 * Save & View
231
232 This step is needed so that all of our future entries don't have "FAQ Template" as their title.
233
234 Congratulations: you just created an Authoring Template! You're almost done now.
Vincent Massol 92.8 235
Manuel Smeria 80.1 236 {{image reference="FAQClass4.PNG"/}}
Ricardo Rodríguez 52.1 237
Alex Cotiugă 105.2 238 = Create the Template Provider =
239
Alex Cotiugă 105.3 240 After the template was created and the object was added, a new section appears with a button to create a template provider to use the existing template.
241 The template provider is created with some default values, but those can be updated to match the needs.
Alex Cotiugă 105.2 242
Alex Cotiugă 107.2 243 {{gallery}}
Alex Cotiugă 108.2 244 image:3-missingTemplateProvider.png
Alex Cotiugă 107.2 245 image:4-addedTemplateProvider.png
246 image:5-templateProviderView.png
247 {{/gallery}}
248
249
Silvia Macovei 48.2 250 = Create a home page for the FAQ application =
Silvia Macovei 38.1 251
Guillaume Lerouge 42.1 252 You want your users to be able to see a list of all existing questions and answers and to add new questions. The best way to do this is to put the FAQ application in its own space and to use that space's homepage to display existing questions.
Vincent Massol 1.1 253
Vincent Massol 93.1 254 Thus we now need to create the ##FAQ.WebHome## page
Vincent Massol 1.1 255
Vincent Massol 93.1 256 * Click on "FAQ" in the breadcrumb to navigate to ##FAQ.WebHome## and notice that the page doesn't exist.
257 * Edit it in wiki mode
258 * Type in the title "FAQs"
259
Silvia Macovei 48.2 260 == Displaying existing FAQ entries ==
Vincent Massol 1.1 261
Manuel Smeria 80.1 262 You have 2 options when it comes to displaying existing FAQ entries:
Guillaume Lerouge 55.2 263
Manuel Smeria 80.1 264 1. Use the livetable component
265 1. Write custom code in order to display them
266
Guillaume Lerouge 55.2 267 === Using the Livetable component ===
268
269 In this section, we will show how to use the [[Livetable Macro>>extensions:Extension.Livetable Macro]] to display the existing questions and answers.
270
Guillaume Lerouge 56.1 271 The livetable component will give users the ability to easily list and filter through existing FAQ documents. The macro is made of 3 parts:
272
273 * The list of columns: for each entry, we will display the question, the date when it was created and a special column that lets users quickly modify entries
274 * The properties of each column: for each column, we will define how it should be displayed, whether it should link to the entry and whether it should be filterable
275 * The livetable options: those are options related to the display of the livetable (in this case we will to display a tag cloud and 10 rows by default)
276
277 Here is the resulting code:
278
279 {{code language="none"}}
280 {{velocity}}
Guillaume Lerouge 55.2 281 #set($columns = ["question", "doc.creationDate", "_actions"])
282 #set($columnsProperties = {
283 "question" : { "type" : "text", "link" : "view", "html" : "true", "sortable":true },
Guillaume Lerouge 56.1 284 "_actions" : {"actions": ["edit","delete"]}
Guillaume Lerouge 55.2 285 })
286 #set($options = {
287 "className":"FAQ.FAQClass",
288 "translationPrefix" : "faq.",
289 "tagCloud" : true,
290 "rowCount": 10
291 })
292 #livetable("faq" $columns $columnsProperties $options)
crowne 57.1 293 {{/velocity}}
Guillaume Lerouge 55.2 294 {{/code}}
295
Vincent Massol 93.1 296 * Copy this code and paste it as Wiki content (inside ##FAQ.WebHome##)
Guillaume Lerouge 56.1 297 * Click "Save and View"
298 * New FAQ entries will now be displayed on the page once you create them
299
Vincent Massol 93.1 300 The ##FAQ.WebHome## page should look similar to this:
Manuel Smeria 80.1 301
302 {{image reference="FAQsLivetable.png"/}}
303
Vincent Massol 93.1 304 Notice how there are some translation keys displayed inside the livetable. Let's create a translations document and change those keys to actual text:
Manuel Smeria 83.1 305
Vincent Massol 93.1 306 * Create a new page inside the FAQ space called Translations, i.e. at ##FAQ.Translations## (using the "+" button)
Manuel Smeria 80.1 307 * Edit it in Wiki mode and paste this content inside:(((
308 {{code language="none"}}
309 faq.question=Question
310 faq.doc.creationDate=Creation Date
311 faq._actions=Actions
Manuel Smeria 83.1 312 {{/code}}
313 )))
Vincent Massol 93.1 314 * Click "Save & View"
315 * Edit it again in Object mode and add a new ##XWiki.TranslationDocumentClass## object to mark the page as a page containing translations. Make sure to select the right scope. Using "Global" means the translations would be visible to all wikis (and it requires having Programming Rights!) and "Wiki" means it's visible to the current wiki only. Choose "Wiki" as the scope.
316 * Click "Save & View" again
Manuel Smeria 80.1 317
Vincent Massol 93.1 318 Now the ##FAQ.WebHome## page should look like this (notice the translations instead of the keys):
Manuel Smeria 80.1 319
320 {{image reference="FAQsLivetableWithTranslations.png"/}}
321
Michael Hamann 117.3 322 === Using Live Data ===
323
324 {{version since='13.0RC1'}}
325 The [[Live Data Macro>>extensions:Extension.Livetable Macro]] is a modern replacement of Livetable components that is more flexible. It can use the same "liveTable" data source and thus display the same data. However, the way it is configured is bit different. Apart from some parameters that can be directly supplied to the macro, it supports a JSON content that can contain further, more detailed configuration options. Here we configure it similar to the options above. We have:
326
327 * The id, here explicitly chosen to be different from the one above to ensure they are unique if both are on the same page
328 * The columns (properties) to display, here the question, creation date and the actions
329 * The data source, this should be ##liveTable##
330 * The source parameters, here specifying the class of objects to display and the translation prefix
331 * In the extended metadata, we only configure the displayer for the question and specify that the ##link##-displayer should be used, linking to the view action and enabling HTML content such that the HTML code of the question is not escaped but displayed.
332
333 The resulting code is:
334
335 {{code language="none"}}
336 {{liveData
337 id="faqLD"
338 properties="question, doc.creationDate, _actions"
339 source="liveTable"
340 sourceParameters="className=FAQ.FAQClass&translationPrefix=faq."
341 }}{
342 "meta": {
343 "propertyDescriptors": [
344 {
345 "id": "question",
346 "displayer":
347 {
348 "id": "link",
349 "linkType": "view",
350 "html": true
351 }
352 }
353 ]
354 }
355 }{{/liveData}}
356 {{/code}}
357
358 * Copy this code and paste it as Wiki content (inside ##FAQ.WebHome##)
359 * Click "Save and View"
360 * Unless you already created the translations for the Livetable in the section above, you also need to create the translations page as described there
361 * New FAQ entries will now be displayed on the page once you create them
362
363 The ##FAQ.WebHome## page should look similar to this (after creating the translations):
364
365 {{image reference="FAQsLiveData.png"/}}
366
367 {{/version}}
368
Guillaume Lerouge 55.2 369 === Using custom code ===
370
Guillaume Lerouge 42.1 371 You will need to write the following code:
Vincent Massol 1.1 372
Vincent Massol 93.2 373 * A XWQL query that will find all your FAQ documents. Check the [[Query API documentation>>extensions:Extension.Query Module]] to know more about it.
Vincent Massol 93.1 374 ** The XWQL query looks for all documents that have a ##FAQ.FAQClass## object other than the template
Guillaume Lerouge 42.1 375 ** If no document has been created yet, a warning message is displayed
Guillaume Delhumeau 59.2 376 * A piece of velocity code to display all those documents
Guillaume Lerouge 42.1 377 ** The velocity code loops in that list
378 ** For each item, the full document is loaded in memory so that values can be retrieved from it
379 ** For each document, the question is retrieved and displayed as a link towards the FAQ entry
Vincent Massol 1.1 380
Manuel Smeria 80.1 381 Here is the resulting code:
Vincent Massol 1.1 382
Silvia Macovei 48.1 383 {{code language="none"}}
Guillaume Lerouge 42.1 384 = Existing FAQ entries =
Vincent Massol 1.1 385
Guillaume Lerouge 42.1 386 {{velocity}}
Vincent Massol 93.1 387 #set($xwql = "from doc.object(FAQ.FAQClass) as faq where doc.fullName <> 'FAQ.FAQTemplate'")
388 #set($results = $services.query.xwql($xwql).execute())
Guillaume Lerouge 42.1 389 #if($results.empty)
Thibaut Camberlin 49.1 390 No FAQ has been created yet!
Guillaume Lerouge 42.1 391 #else
Thibaut Camberlin 49.1 392 #foreach ($item in $results)
393 #set($faq = $xwiki.getDocument($item))
Thibaut Camberlin 51.1 394 * [[${faq.display("question").replace("<p>", "").replace("</p>", "")}>>${item}]]
Thibaut Camberlin 49.1 395 #end
Guillaume Lerouge 42.1 396 #end
397 {{/velocity}}
Silvia Macovei 48.1 398 {{/code}}
Vincent Massol 1.1 399
Vincent Massol 93.1 400 * Copy this code and paste it as Wiki content inside ##FAQ.WebHome##
Guillaume Lerouge 42.1 401 * Click "Save and View"
402 * New FAQ entries will now be displayed on the page once you create them
Vincent Massol 1.1 403
Vincent Massol 93.1 404 The ##FAQ.WebHome## page should look similar to this:
Manuel Smeria 80.1 405
406 {{image reference="FAQsCustomCode.png"/}}
407
Silvia Macovei 48.2 408 == Creating new FAQ entries ==
Vincent Massol 1.1 409
Manuel Smeria 80.1 410 There are 2 ways for you to let your users create new FAQ entries:
Manuel Smeria 83.1 411
Manuel Smeria 80.1 412 1. Declare the FAQ as a template
413 1. Add a custom creation form
Anca Luca 14.1 414
Guillaume Lerouge 55.1 415 === Using a Template ===
416
Manuel Smeria 83.1 417 You will have to define a template provider [[as explained on this page>>extensions:Extension.Administration Application||anchor="HCreatethetemplateprovider"]]
Guillaume Lerouge 55.1 418
Alex Cotiugă 107.2 419 Go to your wiki's administration interface, in the "Templates" section (Administration -> Content -> Templates). Create a new template provider in the
Vincent Massol 94.1 420 ##FAQ## space and name it ##FAQTemplateProvider##
Guillaume Lerouge 55.1 421
422 You can then use the following values:
423
Vincent Massol 94.1 424 * Provider name: ##FAQ Template Provider##
425 * Template name: ##New FAQ entry##
426 * Template to use: ##FAQ.FAQTemplate##
Guillaume Lerouge 55.1 427
Vincent Massol 94.1 428 If you'd like, you can restrict FAQ entries so that they're created only in the ##FAQ## space. Once you're done, click "Save & View". Your template is now ready to be used! Users who click on the "Add >> Page" button will now have the option to create a new page using the FAQ template.
Guillaume Lerouge 55.1 429
430 === Custom creation form ===
431
432 If you choose this option, you will need to write some code to let your users create new FAQ entries. To do this, you will have to create a form in which the user can enter the name of the questions she wants to create. Once typed in, the form calls the same page to trigger the new document creation based on the parameters entered by the user:
433
Guillaume Lerouge 42.1 434 * The first part of the code checks whether the page has a parameter. If so:
435 ** The name of the document that will be created is computed
436 ** A check is done to verify the document doesn't exist yet
437 ** If everything's ok, the user is sent to the new document in inline edition mode
438 * The second part of the code is the actual FAQ creation form
Vincent Massol 94.1 439 ** It builds the name of the document to create it in the ##FAQ## space
Guillaume Lerouge 42.1 440 ** It sets the document parent as being the current document
441 ** It defines the template to use to create the new document
Vincent Massol 1.1 442
Silvia Macovei 48.1 443 {{code language="none"}}
Guillaume Lerouge 42.1 444 {{velocity}}
445 #if("$!request.docName" != '')
446 ## Request for creating a new instance
Clemens Robbenhaar 62.1 447 #set($docName = ${request.docName})
Guillaume Lerouge 47.1 448 #set($targetDocName = "${request.spaceName}.${docName}")
Clemens Robbenhaar 62.1 449 #if(!$xwiki.exists($targetDocName) && $xwiki.hasAccessLevel('edit', $xcontext.user, $targetDocName))
Clemens Robbenhaar 61.1 450 $response.sendRedirect($xwiki.getURL($targetDocName, 'inline', "template=${escapetool.url($request.template)}&parent=${escapetool.url($request.parent)}"))
Guillaume Lerouge 42.1 451 ## Stop processing, since we already sent a redirect.
452 #stop
453 #end
454 #end
Vincent Massol 1.1 455
Guillaume Lerouge 42.1 456 = Add a new question =
457
458 #if("$!targetDocName" != '' && $xwiki.exists($targetDocName))
459 {{warning}}The target document already exists. Please choose a different name, or [[view the existing document>>$targetDocName]]{{/warning}}
460 #elseif("$!targetDocName" != '')
461 {{warning}}You don't have permission to create that document{{/warning}}
462 #end
463
464 {{html}}
465 <form action="" id="newdoc" method="post">
466 <div>
467 <input type="hidden" name="parent" value="${doc.fullName}"/>
468 <input type="hidden" name="template" value="FAQ.FAQTemplate"/>
469 <input type="hidden" name="sheet" value="1"/>
470 <input type="hidden" name="spaceName" value="FAQ"/>
471 Document: <input type="text" name="docName" value="Enter your question here" class="withTip" size="50"/>
472 <span class="buttonwrapper"><input type="submit" value="Create this FAQ" class="button"/></span>
473 </div>
474 </form>
475 {{/html}}
476 {{/velocity}}
Silvia Macovei 48.1 477 {{/code}}
Vincent Massol 1.1 478
Vincent Massol 94.1 479 * Copy this code and paste it as Wiki content inside ##FAQ.WebHome##, below the code that's already there
Guillaume Lerouge 42.1 480 * Click "Save and View"
Vincent Massol 111.1 481 * A form to create new FAQ entries is now available on the page:(((
Manuel Smeria 80.1 482 {{image reference="FAQsWithForm.png"/}}
483 )))
Anca Luca 14.1 484
Silvia Macovei 48.2 485 = Test the Application =
jingbo 27.1 486
Manuel Smeria 80.1 487 Now let's just create a new document in our application to test it out.
Vincent Massol 94.1 488
Manuel Smeria 80.1 489 If you previously chose to use a "Custom creation form" for creating new FAQ entries, follow these steps:
Guillaume Lerouge 42.1 490
Vincent Massol 94.1 491 * Go to ##FAQ.WebHome##
Manuel Smeria 80.1 492 * Below the "Add a new question" header, enter a question (which will also be used as the document title) in the //Document// field
493 * Click //Create this FAQ//
Vincent Massol 111.1 494 * You can then enter your question in longer form using the //Question// field on the template, like this:(((
Manuel Smeria 80.1 495 {{image reference="FAQSheetEdit.PNG"/}}
Silvia Macovei 48.4 496 )))
Vincent Massol 111.1 497 * Click //Save & View// and then you will see the newly created document, like this:(((
Manuel Smeria 80.1 498 {{image reference="FAQSheetView.PNG"/}}
Silvia Macovei 48.4 499 )))
Vincent Massol 111.1 500 * Go back to the ##FAQ.WebHome## page (you can use the breadcrumbs) to see the list of existing questions(((
Manuel Smeria 80.1 501 {{image reference="FAQsWithEntry.png"/}}
502 )))
Guillaume Lerouge 42.1 503
Silvia Macovei 48.2 504 = Conclusion =
Vincent Massol 1.1 505
Manuel Smeria 80.1 506 This tutorial has taught you how to use the Class Wizard app and it has detailed the concepts of classes, objects and properties and introduced the authoring templates and page design sheets.
Vincent Massol 94.1 507
Manuel Smeria 80.1 508 You may also have learned a little bit about Velocity scripting in documents. You can use these basic concepts to build custom applications at the document or presentation layer of XWiki without having to compile or deploy code.
Vincent Massol 1.1 509
510 As always, please take the time to make this document better for other users if you find ways that it can be improved as you read it for the first time.

Get Connected