zoukankan      html  css  js  c++  java
  • DataGrid表格控件

    代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>DataGrid</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script src="../jquery-1.4.2.min.js" type="text/javascript"></script>
    <script src="../jquery.easyui.min.js" type="text/javascript"></script>

    <link href="../themes/default/easyui.css" rel="stylesheet" type="text/css" />
    <link href="../themes/icon.css" rel="stylesheet" type="text/css" />

    <script type="text/javascript">
    $(function() {
    $('#test').datagrid({
    title: 'jQuery EasyUI---DataGrid',
    iconCls: 'icon-save',
    500,
    height: 350,
    nowrap: false,
    striped: true,
    url: '../Data/datagrid_data.json',
    sortName: 'ID',
    sortOrder: 'desc',
    idField: 'ID',
    frozenColumns: [[
    { field: 'ck', checkbox: true },
    { title: 'ID', field: 'ID', 80, sortable: true }
    ]],
    columns: [[
    { title: '基本信息', colspan: 2 },
    { field: 'opt', title: '操作', 100, align: 'center', rowspan: 2,
    formatter: function(value, rec) {
    return '<span style="color:red">编辑 删除</span>';
    }
    }
    ], [
    { field: 'name', title: 'Name', 120 },
    { field: 'addr', title: 'Address', 120, rowspan: 2, sortable: true }
    ]],
    pagination: true,
    rownumbers: true,
    singleSelect: false,
    toolbar: [{
    text: '添加',
    iconCls: 'icon-add',
    handler: function() {
    alert('添加数据')
    }
    }, '-', {
    text: '保存',
    iconCls: 'icon-save',
    handler: function() {
    alert('保存数据')
    }
    }]
    });
    });

    </script>
    </head>
    <body>
    <table id="test"></table>
    </body>
    </html>

    效果

  • 相关阅读:
    记录MySQL中优化sql语句查询常用的30种方法
    记录分布式和集群的区别
    TCP的三次握手与四次挥手理解及面试题(很全面)
    记录Linux常用命令大全
    DNS解析流程
    dup和dup2用法小结
    c++多态的实现
    linux下常见的字符串处理
    ncurses库的一些函数
    用两个栈实现一个队列
  • 原文地址:https://www.cnblogs.com/zhao365845726/p/4185994.html
Copyright © 2011-2022 走看看