微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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>

原文地址:https://www.jb51.cc/dojo/291664.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐