jQuery LigerUI 插件介绍及使用之ligerGrid

一,简介 

ligerGrid的功能列表:

1,支持本地数据和服务器数据(配置data或者url)

2,支持排序和分页(包括Javascript排序和分页)

3,支持列的显示/隐藏

4,支持明细行(表格内嵌)

5,支持汇总行

6,支持单元格模板

7,支持编辑表格(ligerGrid的一个特色,需要其他表单插件的支持)

8,支持树表格(待加入)

8,支持分组(待加入)

二,第一个例子 

引入库文件

如果不需要用到编辑功能,ligerGrid是一个单独的插件,也就是说只需要引入plugins/ligerGrid.js和样式css文件就可以使用(当然必须先引入jQuery)

复制代码
     < link  href ="lib/ligerUI/skins/Aqua/css/ligerui-all.css"  rel ="stylesheet"  type ="text/css"   />
    
< script  src ="lib/jquery/jquery-1.3.2.min.js"  type ="text/javascript" ></ script >
    
< script  src ="lib/ligerUI/js/plugins/ligerGrid.js"  type ="text/javascript" ></ script >
复制代码

  

加入HTML

复制代码
  < div  id ="maingrid" ></ div >
复制代码

准备数据源

复制代码
var  jsonObj  =  {};
jsonObj.Rows 
=  [
    { id: 
1 , name:  " 林三 " , sex:  " " , birthday:  " 1989/01/12 " ,score: 63.3  },
    { id: 
2 , name:  " 陈丽 " , sex:  " " , birthday:  " 1989/01/12 " , score:  72.2  },
    { id: 
3 , name:  " 啊群 " , sex:  " " , birthday:  " 1981/12/12 " , score:  43.4  },
    { id: 
4 , name:  " 表帮 " , sex:  " " , birthday:  " 1983/01/12 " , score:  73.2  },
    { id: 
5 , name:  " 陈丽 " , sex:  " " , birthday:  " 1989/01/12 " , score:  74.5  },
    { id: 
6 , name:  " 成钱 " , sex:  " " , birthday:  " 1989/11/13 " , score:  73.3  },
    { id: 
7 , name:  " 都讯 " , sex:  " " , birthday:  " 1989/04/2 " , score:  83.2  },
    { id: 
8 , name:  " 顾玩 " , sex:  " " , birthday:  " 1999/05/5 " , score:  93.2  },
    { id: 
9 , name:  " 林会 " , sex:  " " , birthday:  " 1969/02/2 " , score:  73.4  },
    { id: 
10 , name:  " 王开 " , sex:  " " , birthday:  " 1989/01/2 " , score:  33.3  },
    { id: 
11 , name:  " 刘盈 " , sex:  " " , birthday:  " 1989/04/2 " , score:  53.3  },
    { id: 
12 , name:  " 鄂韵 " , sex:  " " , birthday:  " 1999/05/5 " , score:  43.5  },
    { id: 
13 , name:  " 林豪 " , sex:  " " , birthday:  " 1969/02/21 " , score:  83.6  },
    { id: 
14 , name:  " 王开 " , sex:  " " , birthday:  " 1989/01/2 " , score:  93.7  },
    { id: 
15 , name:  " 鄂酷 " , sex:  " " , birthday:  " 1999/05/5 " , score:  61.1  },
    { id: 
16 , name:  " 林豪 " , sex:  " " , birthday:  " 1969/02/21 " , score:  73.3  },
    { id: 
17 , name:  " 王开 " , sex:  " " , birthday:  " 1989/01/2 " , score:  41.6  }
];
复制代码

调用ligerGrid

 

复制代码
             var  columns  =
            [
                { display: 
' 主键 ' , name:  ' id ' , type:  ' int ' , mintWidth:  40 , width:  100  },
                { display: 
' 名字 ' , name:  ' name '  },
                { display: 
' 性别 ' , name:  ' sex '  },
                { display: 
' 生日 ' , name:  ' birthday ' , type:  ' date '  }
             ];
            $(
" #maingrid " ).ligerGrid({
                columns: columns,
                data: jsonObj
            });
复制代码

这样效果就出来了:

 

三,几个重要的参数

 

1,标题:配置titleshowTitle:true即可

 

复制代码
            $( " #maingrid " ).ligerGrid({
                columns: columns,
                data: jsonObj,title:
' 我的标题 ' ,showTitle: true
            });
复制代码

2,宽度:ligerGrid会根据列自动计算出表格的宽度,当然也可以指定一个数值或者百分比来设置宽度

 

复制代码
            $( " #maingrid " ).ligerGrid({
                columns: columns,
                data: jsonObj, width: 
' 100% '
            });
复制代码

3,分页:默认是使用分页的,如果不想使用分页,可以配置 userPager :false

 

复制代码
            $( " #maingrid " ).ligerGrid({
                columns: columns,
                data: jsonObj, usePager:
false
            });
复制代码

4,滚动条:内容有太多的行时会出现滚动体,如果不想显示,可以通过配置isScroll设置是否出现滚动体

 

复制代码
            $( " #maingrid " ).ligerGrid({
                columns: columns,
                data: jsonObj, isScroll:
false
            });
复制代码

5,Column的配置

 

 

  

Dem下载:LigerUI.Demos.Grid

更多的文档和API后面会渐渐补充,浏览更多的应用请访问Demo.LigerUI.com

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值