Getting started¶
The following document will help you in downloading and installing Rialto javascript API
Download the source¶
Create a root directory (RIALTO_HOME).
Go to the Files section, download and unpack the zip file for the latest version in the root directory .
Configure Rialto¶
Edit the /rialtoEngine/config.js file
var rialtoConfig = {
version : 1.0,
isDebug : false,
language : 'en',
skin : 'defaultSkin',
localPath :'file:///D:/Mes documents/workspace/Rialto-coreV1/rialtoEngine/',
serverPath :'/rialto/rialtoEngine/',
datePattern : "dd/MM/yyyy"
};
where
- version:version number of this release
- isDebug: if true a console (firebug or another) will allow to trace debug message
- language: the language for internal message display
- localPath:local path of the rialtoEngine folder
- skin: id of the skin to use
- serverPath:url path on the server of the rialtoEngine folder
- datePattern : default date pattern
If you want to use Rialto with a server
Change serverPath value and put the path off the rialtoEngine folder
Example:
serverPath : `/RIALTO_HOME/rialtoEngine/';
If you want to use Rialto with local file
Change the localPath value and put the path off the rialtoEngine folder
Example:
localPath : `file:///C:/RIALTO_HOME/rialtoEngine/';