做网站|网站建设,就上易助科技网

前端技术文档及相关资料下载

关于前端html、css、js等技术上的各种疑难棘手问题的解决方案探讨及相关资料下载!

JQuery数据网格插件jsGrid.js
来源:易助科技网浏览量:1收藏

简介

jsGrid是基于jQuery的轻量级客户端数据网格插件。它支持基本的网格操作,如插入、过滤、编辑、删除、分页和排序。jsGrid非常灵活,允许自定义其外观和组件。

 


(下载的附件中附有DEMO)


使用

1.  引入文件

<link type="text/css" rel="stylesheet" href="jsgrid.min.css" />
<link type="text/css" rel="stylesheet" href="jsgrid-theme.min.css" />

<script type="text/javascript" src="jsgrid.min.js"></script>

说明:还需要引入 jQuery v1.8.3 或更高版本。


2.  HTML

div id="jsGrid"></div>


3.  调用

<script>
var clients = [
{ "Name": "Otto Clay", "Age": 25, "Country": 1, "Address": "Ap #897-1459 Quam Avenue", "Married": false },
{ "Name": "Connor Johnston", "Age": 45, "Country": 2, "Address": "Ap #370-4647 Dis Av.", "Married": true },
{ "Name": "Lacey Hess", "Age": 29, "Country": 3, "Address": "Ap #365-8835 Integer St.", "Married": false },
{ "Name": "Timothy Henson", "Age": 56, "Country": 1, "Address": "911-5143 Luctus Ave", "Married": true },
{ "Name": "Ramona Benton", "Age": 32, "Country": 3, "Address": "Ap #614-689 Vehicula Street", "Married": false }
];

var countries = [
{ Name: "", Id: 0 },
{ Name: "United States", Id: 1 },
{ Name: "Canada", Id: 2 },
{ Name: "United Kingdom", Id: 3 }
];

$("#jsGrid").jsGrid({
width: "100%",
height: "400px",

inserting: true,
editing: true,
sorting: true,
paging: true,

data: clients,

fields: [
{ name: "Name", type: "text", width: 150, validate: "required" },
{ name: "Age", type: "number", width: 50 },
{ name: "Address", type: "text", width: 200 },
{ name: "Country", type: "select", items: countries, valueField: "Id", textField: "Name" },
{ name: "Married", type: "checkbox", title: "Is Married", sorting: false },
{ type: "control" }
]
});
</script>


相关链接

官网地址 :http://js-grid.com/

Gitee 地址 :https://gitee.com/mirrors/jsgrid