Utilisation du framework rialto
Bonjour,
Je souhaitais utiliser Rialto mais j'ai des problèmes avec les exemples.
Je ne connais pas le javascript, alors il y a peut-être une erreur bête.
J'ai suivi "Présentation du framework Rialto" sur la page http://b-le-roux.developpez.com/tuto...ialto/#LVI-B-2
voici le code à l'heure actuelle:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link rel='STYLESHEET' type='text/css' href='../rialtoEngine/style/rialto.css'/>
<link id = 'standart_behavior' rel='STYLESHEET' type='text/css' href='../rialtoEngine/style/behavior.css'>
<link rel='STYLESHEET' type='text/css' href='../rialtoEngine/style/defaultSkin.css'>
<script>
var rialtoConfig = {
version : 1.0,
isDebug : false,
language : 'en',
skin : 'defaultSkin',
localPath :'file:///D:/GUI/workspace/Fast_LegerV2/WebContent/rialtoEngine/',
datePattern : "dd/MM/yyyy"
};
</script>
<script language="JavaScript" type="text/javascript" src="Fast_LegerV2/rialtoEngine/javascript/rialto.js"></script>
<script>
var splitPG = new rialto.widget.Splitter({
Prop:0.20,
orientation:'h',
name:'splitPG',
parent:document.body
});
</script>
</head>
<body>
</body>
</html> |
et l'erreur est :
'rialto' est indéfini
merci d'avance.