Javascript-форум (https://javascript.ru/forum/)
-   Dojo toolkit (https://javascript.ru/forum/dojotoolkit/)
-   -   dojox.grid.Grid (https://javascript.ru/forum/dojotoolkit/3939-dojox-grid-grid.html)

HOY 08.06.2009 03:23

dojox.grid.Grid
 
Вложений: 2
доброго времени суток


my.html
<!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=UTF-8">
<title>Justa Cigar Wish List</title>
<style type="text/css">
@import "/dojoroot/dijit/themes/tundra/tundra.css" ;
@import "/dojoroot/dojo/resources/dojo.css" ;
@import "/dojoroot/dojox/grid/_grid/tundraGrid.css" ;
</style>
<script type="text/javascript" src="/dojoroot/dojo/dojo.js"
djConfig="parseOnLoad: true" ></script>
<script>
dojo.require("dojo.parser" );
dojo.require("dojo.data.ItemFileReadStore" );
dojo.require("dojox.grid.Grid" );
</script>
<style>
#grid {
border: 1px solid #333;
width: 550px;
margin: 10px;
height: 200px;
font-size: 0.9em;
font-family: Geneva, Arial, Helvetica, sans-serif;
}
</style>
</head>
<body class="tundra">
<h1>Justa Cigar Corporation</h1>
<h3>"Sometimes a cigar is a Justa Cigar!" </h3>
<div dojoType="dojo.data.ItemFileReadStore"
jsId="wishStore" url="services/cigar_wish_list.json" >
</div>
<table id="grid" dojoType="dojox.grid.Grid" store="wishStore"
query="{ wishId: '*' }" clientSort="true" >
<thead>
<tr>
<th field="description" width="15em">Cigar</th>
<th field="size">Length/Ring</th>
<th field="origin">Origin</th>
<th field="wrapper">Wrapper</th>
<th field="shape">Shape</th>
</tr>
</thead>
</table>
</body>
</html>




services/cigar_wish_list.json
{
"identifier" : "wishId" ,
"label" : "description" ,
"items" :
[
{
"wishId" : 4455, "description" : "Don Pepin Garcia Delicias" ,
"size" : "7-50" , "origin" : "Nicaragua" , "wrapper" : "Corojo" ,
"shape" : "Straight"
},
{
"wishId" : 4456, "description" : "601 Habano Robusto" ,
"size" : "5-50" , "origin" : "Nicaragua" , "wrapper" : "Natural" ,
"shape" : "Straight"
},
{
"wishId" : 4457, "description" : "Black Pearl Rojo Robusto" ,
"size" : "4 3/4-52" , "origin" : "Nicaragua" , "wrapper" : "Natural" ,
"shape" : "Straight"
},
/* ... */
]
}

проблема в следующем: когда я запускаю my.html то получаю вот что
Вложение 119

а должен получить вот это
Вложение 118

в чем может быть проблема?


Часовой пояс GMT +3, время: 17:40.