The following document will help you in downloading and installing Rialto javascript API
Create a root directory (RIALTO_HOME).
Go to download section and download and unpack the zip file for the latest version (1.0 as of last revision of this page) in the root directory .
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
If you want to use Rialto with a server
Change serverPath value and put the path off the rialtoEngine folder
Exemple:
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
Exemple:
localPath : `file:///C:/RIALTO_HOME/rialtoEngine/';