基于ExtJS Grid创建Table例子

简介: 基于ExtJS Grid创建Table例子

基本思路:


基于ExtJS4.1版本开发,主要是首先创建一个Data Model组件,mockup一些JSON数据


然后将data Model与JSON数据绑定到创建的data store中,最后创建grid组件同时绑定


之前的data store完成整个程序。



一个简单ExtJS组件结构图:

1344480856_9774.png


程序运行结果如下:

1344481042_9738.png


JavaScript部分的源代码如下:

Ext.require([
    'Ext.grid.*',
    'Ext.data.*',
    'Ext.util.*',
    'Ext.state.*'
]);
 
Ext.onReady(function() {
  // mock up data
  // sample static data for the store
    var myData = [
        ['gloomyfish',  31, 'M',  'software',  '09 July 1980'],
        ['Mike',  31, 'M',  'software',  '09 July 1984'],
        ['Green Mook',  31, 'M',  'software',  '09 July 1980'],
        ['Rose Kate', 25, 'F',  'software',  '09 July 1987'],
        ['Dave Wu',   28, 'M',  'software',  '24 July 1984'],
        ['Hong Naa',  31, 'M',  'software',  '09 July 1980']
    ];
    
    // create data model
    Ext.define('EmplyeeInfo', {
        extend: 'Ext.data.Model',
        fields: [
           {name: 'employee', type: 'string'},
           {name: 'age',      type: 'int'},
           {name: 'gentle',    type: 'string'},
           {name: 'department',  type: 'string'},
           {name: 'birthday', type: 'date', dateFormat: 'd F Y'}
        ],
    });
    
  // create the data store
    var store = Ext.create('Ext.data.ArrayStore', {
      model: 'EmplyeeInfo',
        data: myData
    });
    
    // create the Grid
    var grid = Ext.create('Ext.grid.Panel', {
        store: store,
        columns: [
            {
                text     : 'Employee Name',
                flex     : 1,
                sortable : false,
                dataIndex: 'employee'
            },
            {
                text     : 'Age',
                width    : 75,
                sortable : true,
                dataIndex: 'age'
            },
            {
                text     : 'Gentle',
                width    : 75,
                sortable : true,
                dataIndex: 'gentle'
            },
            {
                text     : 'Department',
                width    : 75,
                sortable : true,
                dataIndex: 'department'
            },
            {
                text     : 'Birthday Date',
                width    : 85,
                sortable : true,
                renderer : Ext.util.Format.dateRenderer('m/d/Y'),
                dataIndex: 'birthday'
            }
        ],
        height: 350,
        width: 600,
        title: 'Employee Information Table',
        renderTo: 'grid-example',
        viewConfig: {
            stripeRows: true
        }
    });
});

HTML部分的源代码如下:

<html>
<head>
    <title>Hello Ext</title>
    <link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css">
    <script type="text/javascript" src="extjs/ext-all.js"></script>
    <!-- <script type="text/javascript" src="app.js"></script> -->
    <script type="text/javascript" src="app/grid-demo.js"></script>
    <style type="text/css">
    body {
      margin-top: 30px;
      margin-right: 30px;
      margin-bottom: 30px;
      margin-left: 30px;
    }
  </style>
</head>
<body>
<h1>My Fist Grid Table - ExtJS 4.1</h1>
<p>This example shows how to create a grid from Array data.</p><br>
<div id="grid-example"></div> 
</body>
</html>

在google chrome上测试通过。运行本程序前请下载ExtJS 4.1开发包。

相关文章
|
JavaScript
Vue表格显示问题:v-show无法影响el-table-column列的解决方案
Vue表格显示问题:v-show无法影响el-table-column列的解决方案
981 0
|
7月前
|
容器
QML之定位器(Column,Row,Flow,Grid)
QML之定位器(Column,Row,Flow,Grid)
697 2
|
前端开发
ant design Row col样式修改
ant design Row col样式修改
95 0
ant design Row col样式修改
element table表格表头动态渲染效果demo(整理)
element table表格表头动态渲染效果demo(整理)
|
前端开发
【React工作记录六十六】ant design Row col样式修改
【React工作记录六十六】ant design Row col样式修改
231 0
|
JavaScript 前端开发
v-if与v-show的使用方法以及区别
v-if与v-show的使用方法以及区别 在vue里面有两种方式来控制元素的显示与隐藏,分别是v-if和v-show,这两种方式都可以控制元素的显示与隐藏,那么如何进行使用呢?
|
前端开发
前端工作总结182-element-ui el-table sortable属性 参数详解
前端工作总结182-element-ui el-table sortable属性 参数详解
416 0
前端工作总结182-element-ui el-table sortable属性 参数详解
|
存储 索引
Element Table 可以实现哪些常见的有用的功能
最近项目中频繁使用 table 功能,因为 UI 框架使用的又是 Element UI,于是总结下在 Element 下 el-table 组件使用技巧。
488 0
Element Table 可以实现哪些常见的有用的功能
|
前端开发
bootstrap table本地数据使用方法
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/gisdoer/article/details/81530328 bootstrap...
3121 0
|
JavaScript 前端开发 数据格式
ExtJS 6 gridPanel绘制表格并填充数据的例子
Ext.grid.Panel 是表格,可以显示数据,我们来看看它的基本用法:View + Store + Model使用上述三个“部分”就可以完整的,最简易的在Ext的世界中绘制一个用于显示数据库中数据的UI View部分的代码 Ext.
3072 0