DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jqGrid jQuery 表格插件測試代碼
jqGrid jQuery 表格插件測試代碼
編輯:JQuery特效代碼     

官方Demo地址:http://www.trirand.com/blog/jqgrid/jqgrid.html

效果圖:

頁面代碼:
代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>本地數據</title>
<link href="css/redmond/jquery-ui-1.8.14.custom.css" rel="Stylesheet" />
<link href="css/ui.jqgrid.css" rel="Stylesheet" />
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.14.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.jqGrid.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#list1").jqGrid({
datatype:"local",
height:250,
colNames:['自動編號','地區編號','地區名稱','所屬城市編號'],
colModel:[ //這一項比較重要, 其中的name屬性主要是用於後期的頁面代碼(注意這裡的范圍是本頁面上的代碼,不會涉及到後台代碼), 而index屬性是則是用於涉及後台時,給後台傳遞排序字段
{name:'id',index:'id',width:60,sorttype:"int"},
{name:'areaID',index:'areaID',width:80,sortable:false}, //sortable是該字段是否排序
{name:'area',index:'area',width:180},
{name:'father',index:'father',width:100,sortable:false} //colModel兩個最主要就是1:name前台js用,2:index給後台傳遞排序字段
],
multiselect:true, //是否允許多選擇多項
caption:"中國各城市的主要地區" //表格的標題文字
});
var mydata=[
{id:"1",areaID:'110101',area:'東城區',father:'110100'},
{id:"2",areaID:'110102',area:'西城區',father:'110100'},
{id:"3",areaID:'110103',area:'崇文區',father:'110100'},
{id:"4",areaID:'110104',area:'宣武區',father:'110100'},
{id:"5",areaID:'110105',area:'朝陽區',father:'110100'},
{id:"6",areaID:'110106',area:'豐台區',father:'110100'},
{id:"7",areaID:'110107',area:'石景山區',father:'110100'},
{id:"8",areaID:'110108',area:'海澱區',father:'110100'},
{id:"9",areaID:'110109',area:'門頭溝區',father:'110100'},
{id:"10",areaID:'110111',area:'房山區',father:'110100'}
];
for(var i=0; i<mydata.length; i++) //循環給每行添加數據
{
$("#list1").jqGrid('addRowData',i+1,mydata[i]);
}
});
</script>
</head>
<body>
<table id="list1"></table>
<div id="pager1"></div>
</body>
</html>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved