Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 08.06.2009, 03:23
HOY HOY вне форума
Новичок на форуме
Отправить личное сообщение для HOY Посмотреть профиль Найти все сообщения от HOY
 
Регистрация: 15.04.2009
Сообщений: 3

dojox.grid.Grid
доброго времени суток


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 то получаю вот что
img2.JPG

а должен получить вот это
img1.JPG

в чем может быть проблема?
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск