码迷,mamicode.com
首页 > 其他好文 > 详细

EasyUI篇のDataGrid

时间:2015-11-17 19:00:57      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

HTML:

<table id="dg"></table> 或者 <div id="dg"></div>

JS:

$(‘#dg‘).datagrid({
        url: ‘/AdminNewList/GetList‘,
        method: ‘post‘,
        rownumbers: true,
        columns: [[
            { field: ‘ck‘, checkbox: true },
            { field: ‘title‘, title: ‘标题‘, width: 200, align: ‘center‘ },
            { field: ‘author‘, title: ‘作者‘, width: 100, align: ‘center‘ },
            { field: ‘subDateTime‘, title: ‘时间‘, width: 150, align: ‘center‘ },
            { field: ‘msg‘, title: ‘详细‘, width: 400, align: ‘center‘ },
            { field: ‘delete‘, title: ‘删除‘, width: 100, align: ‘center‘ },
            { field: ‘editor‘, title: ‘修改‘, width: 100, align: ‘center‘ }
        ]]
    });

 

注:后台GetList方法,返回的是json字符串

EasyUI篇のDataGrid

标签:

原文地址:http://www.cnblogs.com/dabexiong/p/4972370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!