dojo grid 组件

dojo的grid组件,其功能还是很强大的,我主要用到两种方式:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<title>Test dojox.grid.DataGrid Basic Editing</title>
	<Meta http-equiv="Content-Type" content="text/html; charset=utf-8"></Meta>
	<style type="text/css">
		@import "../../../dojo/resources/dojo.css";
		@import "../resources/Grid.css";
		@import "../resources/tundraGrid.css";
		body {
			font-size: 0.9em;
			font-family: Geneva,Arial,Helvetica,sans-serif;
		}
		.heading {
			font-weight: bold;
			padding-bottom: 0.25em;
		}
		#grid,#grid2 {
			width: 65em;
			height: 25em;
			padding: 1px;
		}
	</style>
	<script>
	//定义grid的结构
	ModelGridLayout = [{ 
 		cells: [ 
 				{ name:'<div style=" float:left;width:20px;height:20px;">second</div>',field: 'name',editable: true,width: '300px',cellStyles: 'text-decoration: none; cursor:default; ',headerStyles: 'text-align: center;' },{ name:'first',field: 'area',width: 'auto',headerStyles: 'text-align: center;'},],}]; 
	</script>
	
	<script type="text/javascript" src="../../../dojo/dojo.js" 
		djConfig="isDebug:true,parSEOnLoad: true">

		</script>
	<script type="text/javascript">
		dojo.require("dijit.dijit");
		dojo.require("dojox.grid.DataGrid");
		dojo.require("dojo.data.ItemFileWriteStore");
		dojo.require("dojo.parser");
	</script>

	<script type="text/javascript" src="support/test_data.js"></script>
</head>
<body class="tundra">
	<div class="heading">dojox.grid.DataGrid Basic Editing Test</div>
	<span dojoType="dojo.data.ItemFileWriteStore" 
		jsId="jsonStore" url="../../../dijit/tests/_data/countries.json">
	</span>
	<table dojoType="dojox.grid.DataGrid"
		jsid="grid" id="grid" 
		store="jsonStore" query="{ name: '*' }" rowsPerPage="20" rowSelector="20px">
		<thead>
			<tr>
				<th field="name" width="300px">Country/Continent Name</th>
				<th field="type" width="auto" cellType="dojox.grid.cells.Select"  options="country,city,continent" editable="true">Type</th>
			</tr>
		</thead>
	</table>

	<div dojoType="dojox.grid.DataGrid"
		jsid="grid1" id="grid1" 
		store="jsonStore" query="{ name: '*' }" style="width:800px" structure=ModelGridLayout rowSelector="20px"></div>
	
</body>
</html>

相关文章

我有一个网格,可以根据更大的树结构编辑小块数据.为了更容易...
我即将开始开发一款教育性的视频游戏.我已经决定以一种我可以...
我正在使用带有Grails2.3.9的Dojo1.9.DojoNumberTextBox小部...
1.引言鉴于个人需求的转变,本系列将记录自学arcgisapiforja...
我正在阅读使用dojo’sdeclare进行类创建的语法.描述令人困惑...
我的团队由更多的java人员和JavaScript经验丰富组成.我知道这...