Salut,
apres avoir lu les tuto et essayé , j'arrive toujours pas à afficher un tableau avec dojo
Voici ce que j'ai fait et ca m'affiche une page blanche
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<%@ 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>grid</title>
 
	<style type="text/css">
  	@import "/dojo/dojox/grid/_grid/Grid.css";
 	 @import "/dojo/dojox/grid/_grid/nihiloGrid.css";
	</style>
 
	<script type="text/javascript">
 
  	dojo.require("dojox.grid.Grid");
	</script>
	<script type="text/javascript" src="/dojo/dojox/grid/tests/support/test_data.js"></script>
	<script type="text/javascript">
 
    	var view1 = {
   	   cells: [
   	     {name: 'Column 0'}, {name: 'Column 1'}, {name: 'Column 2'}, {name: 'Column 3', width: "150px"}, {name: 'Column 4'}
      ]
    };
 
    var layout = [ view1 ];
</script>
	</head>
		<body>		
		<div id="grid1" dojoType="dojox.Grid" model="model" structure="layout"></div>					
		</body>
	</html>