Front-end Resources

Last modified by Lucas Charpentier (Sereza7) on 2024/03/12

This section aims to document all the front-end resources available in XWiki for application developers and for developers of the XWiki products. Front-end resources are of two main types:

  • External Libraries
  • Internal components (based or not on some of the external libraries)

Front-end resources are mainly composed of JavaScript libraries, CSS stylesheets and their corresponding HTML reusable snippets (or velocity macro to output this snippet) and velocity macros.

Some of the resources presented in here are not included by default with all HTML-rendered wiki pages (it would be too much to send to the client!). You have to request their inclusion from a skin template or from the wiki page itself using the jsfx plugin. For example, to request the inclusion of the Page Suggest Picker, you can write, in XWiki Syntax 2.1:

{{velocity}}
$xwiki.jsfx.use('uicomponents/suggest/suggestPages.js')
{{/velocity}}

The path you indicate to the jsfx plugin is the relative path where the library can be found under the resources directory of the XWiki webapp. Similarly to the jsfx plugin, there is a ssfx plugin that can be used to request the inclusion of CSS stylesheets files.

External resources

XWiki contains some third-party libraries bundled by default.

Hereunder is a table presenting some of the external libraries XWiki comes with:

Library NameDescription
 JQuery jQuery is "a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript."
 JQuery UI jQuery UI is "a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice."
 Bootstrap Bootstrap is "the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web."" Bootstrap is bundled with XWiki mainly because the XWiki skin is based on it.

See Using jQuery and jQuery UI for an example of using jQuery and jQuery UI in an XWiki page, and more generally check how to integrate JavaScript Libraries in XWiki.

Internal resources

Front-end Components

JavaScript resources

StyleSheet resources

Tags:
   

Get Connected