首页 > 代码库 > 用JavaScript方式创建easyUI datagrid Column Group(列组)
用JavaScript方式创建easyUI datagrid Column Group(列组)
代码如下:
[javascript] view plain copy
- <script type="text/javascript">
- var datagrid;
- $(function(){
- $(‘#datagrid‘).datagrid({
- url:‘{:U("Admin/Article/indexjson")}‘,
- title:‘‘,
- iconCls:‘icon-save‘,
- fit:true,
- //下面的page条
- pagination:true,
- pageSize:14,
- pageList:[14,20,30,40,50],
- //是否出现横向滚动条
- fitColumns:true,
- //数据折行
- nowrap:false,
- border:false,
- //帮你记住你选过的,做跨页删除
- idField:‘id‘,
- columns:[[{
- title:‘‘,
- field:‘ck‘,
- checkbox:true,
- width:10,
- rowspan:2
- },{
- title:‘ID‘,
- field:‘id‘,
- width:50,
- rowspan:2,
- align:‘center‘
- },{
- title:‘文章标题‘,
- field:‘title‘,
- width:350,
- rowspan:2
- },{
- title:‘属性‘,
- align:‘center‘,
- colspan:3
- },{
- title:‘所属栏目‘,
- field:‘name‘,
- width:150,
- rowspan:2
- },{
- title:‘所属专题‘,
- field:‘name‘,
- width:150,
- rowspan:2
- },{
- title:‘发布时间‘,
- field:‘time‘,
- width:150,
- align:‘center‘,
- rowspan:2
- }
- ],[
- {
- title:‘推荐‘,
- field:‘good‘,
- width:50,
- align:‘center‘
- },{
- title:‘热门‘,
- field:‘hits‘,
- width:50,
- align:‘center‘
- },{
- title:‘图‘,
- field:‘pic‘,
- width:50,
- align:‘center‘
- },
- ]],toolbar:"#tb"
- });
- });
- function doSearch(value){
- //alert(‘You input: ‘ + value);
- $(‘#datagrid‘).datagrid(‘load‘,{
- title:$(‘#tb‘).find(‘[name=search]‘).val()
- });
- }
- function doAdd(){
- //alert(‘You input: ‘ + value);
- }
- function doSave(value){
- alert(‘You input: ‘ + value);
- }
- function doDel(value){
- alert(‘You input: ‘ + value);
- }
- // function doSearch(value){
- // alert(‘You input: ‘ + value);
- // }
- </script>
用JavaScript方式创建easyUI datagrid Column Group(列组)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。