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', editable: true, width: 'auto', cellStyles: 'text-decoration: none; cursor:default; ',
  				 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>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值