Extjs4 GridPanel 的几种样式详解

2024-04-21 15:32

本文主要是介绍Extjs4 GridPanel 的几种样式详解,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

简单表格

排序,显示某列,读取本地数据

//本地数据
            var datas = [
            ['1', 'gao', 'man'], ['2', 'gao', 'man'], ['3', 'gao', 'man']
                    ];
            //创建面板
            Ext.create('Ext.grid.Panel', {
                title: 'easy grid',
                width: 400,
                height: 300,
                renderTo: Ext.getBody(),
                frame: true,
                viewConfig: {
                    forceFit: true,
                    stripRows: true
                },
                store: {//配置数据代理

                    fields: ['id', 'name', 'gender'],
                    proxy: {
                        type: 'memory',
                        data: datas,
                        reader: 'array'   //数据读取器为 数据读取

                    },
                    autoLoad: true   
                },
                columns: [{  //自定义列信息
                    header: 'id',
                    width: 30,
                    dataIndex: 'id',  //绑定fields中得字段
                    sortable: true
                }, {
                    header: 'name',
                    width: 80,
                    dataIndex: 'name',
                    sortable: true
                }, {
                    header: 'gender',
                    width: 80,
                    dataIndex: 'gender',
                    sortable: true
                }

                        ]

            })

表格列:

行号,   bool行转成是否,日期格式化输出(date,top day), number数据类型格式化输出(change,volume),Action列(操作列)

代码;

  Ext.tip.QuickTipManager.init();

            Ext.create('Ext.data.Store', {
                storeId: 'sampleStore',
                fields: [{
                    name: 'framework',
                    type: 'string'
                }, {
                    name: 'rocks',
                    type: 'boolean'
                }, {
                    name: 'volume',
                    type: 'number'
                }, {
                    name: 'topday',
                    type: 'date'
                }, {
                    name: 'change',
                    type: 'number'
                }, {
                    name: 'date',
                    type: 'date'
                }, {
                    name: 'price',
                    type: 'number'
                }

                        ],
                data: {
                    'items': [{
                        "framework": "Ext JS 1",
                        "rocks": true,
                        "symbol": "goog",
                        "date": '2011/04/22',
                        "change": 0.8997,
                        "volume": 3053782,
                        "topday": '04/11/2010',
                        "price": 1000.23

                    }, {
                        "framework": "Ext JS 2",
                        "rocks": true,
                        "symbol": "goog",
                        "date": '2011/04/22',
                        "change": 0.8997,
                        "volume": 3053782,
                        "topday": '04/11/2010',
                        "price": 1000.23

                    }, {
                        "framework": "Ext JS 3",
                        "rocks": true,
                        "symbol": "goog",
                        "date": '2011/04/22',
                        "change": 0.8997,
                        "volume": 3053782,
                        "topday": '04/11/2010',
                        "price": 1000.23

                    }]
                },
                proxy: {
                    type: 'memory',
                    reader: {
                        type: 'json',
                        root: 'items'
                    }
                }
            });

            Ext.create('Ext.grid.Panel', {
                title: 'Boolean Column Demo',
                store: Ext.data.StoreManager.lookup('sampleStore'),
                columns: [
                    Ext.create('Ext.grid.RowNumberer', { text: '行号', width: 40 }),
                {
                    text: 'Framework',
                    dataIndex: 'framework',
                    width: 100
                }, {
                    xtype: 'booleancolumn',
                    text: 'Rocks',
                    trueText: '是',
                    falseText: '否',
                    dataIndex: 'rocks'
                }, {
                    text: 'Date',
                    dataIndex: 'date',
                    xtype: 'datecolumn',
                    format: 'Y年m月d日'
                }, {
                    text: 'Change',
                    dataIndex: 'change',
                    xtype: 'numbercolumn',
                    format: '0.000'
                }, {
                    text: 'Volume',
                    dataIndex: 'volume',
                    xtype: 'numbercolumn',
                    format: '0,000'
                }, {
                    text: 'Top Day',
                    dataIndex: 'topday',
                    xtype: 'datecolumn',
                    format: 'l'
                }, {
                    text: 'Current Price',
                    dataIndex: 'price',
                    renderer: Ext.util.Format.usMoney
                }, {
                    header: '操作',
                    xtype: 'actioncolumn', //操作列
                    width: 100,
                    items: [{
                        icon: 'e.gif', // 编辑图片地址                       

                        tooltip: ‘编辑’,   //鼠标over显示的文字 使用此功能,必须 Ext.tip.QuickTipManager.init();
                        handler: function (grid, rowIndex, colIndex) {
                            var rec = grid.getStore().getAt(rowIndex);
                            alert("Edit " + rec.get('framework'));
                        }
                    }, {
                        icon: 'd.gif',
                        tooltip: 'Delete',
                        handler: function (grid, rowIndex,
                                                colIndex) {
                            var rec = grid.getStore().getAt(rowIndex);
                            alert("Terminate " + rec.get('framework'));
                        }
                    }]

                }, {

                }
                        ],
                height: 200,
                width: 800,
                renderTo: Ext.getBody()
            });

下面这个图是 单击 操作(编辑,删除)按钮触发的回调函数的详细信息.

 

下面演示  自定义 渲染函数

效果:

Ext.tip.QuickTipManager.init();

           function customFunction(value, metadata) {
                if (value > 10) {
                    metadata.style = 'color:red';

                }
                return value;

            }

            Ext.create('Ext.data.Store', {
                storeId: 'sampleStore',
                fields: [ {
                    name: 'custom',
                    type: 'number'
                }

                        ],
                data: {
                    'items': [{
                       
                        "custom": 10

                    }, {
                       
                        "custom": 100

                    }, {
                      
                        "custom": 1000

                    }]
                },
                proxy: {
                    type: 'memory',
                    reader: {
                        type: 'json',
                        root: 'items'
                    }
                }
            });

            Ext.create('Ext.grid.Panel', {
                title: 'Boolean Column Demo',
                store: Ext.data.StoreManager.lookup('sampleStore'),
                columns: [
                    Ext.create('Ext.grid.RowNumberer', { text: '行号', width: 40 }),
                 {
                    text: 'custom',
                    dataIndex: 'custom',
                    renderer: customFunction //调用自定义函数 来渲染
                }
                        ],
                height: 200,
                width: 800,
                renderTo: Ext.getBody()
            });

 

 

选择模式:Selection

选择模式分为三类:

1,行选择(默认)

2.单元格选择

3.复选框选择(checkbox组)

演示单元格选择代码:

只需在上述代码配置节当中,加入

tbar: [
                {
                    text: '取得所选单元格',
                    handler: function () {

                        var cell = grid.getSelectionModel().getCurrentPosition();  //getSelectionModel()获取当前选择模式,getCurrentPosition()获取当前选择的单元格
                        alert(Ext.JSON.encode(cell));
                    }
                }
                ],
selType:'cellmodel'     //设置 选择模式 为   单元格选择

 

行选择:

效果:

tbar: [
                {
                    text: '取得所选行',
                    handler: function () {

                        var rows = grid.getSelectionModel().getSelection(); //getSelection();获取当前选中的记录数组
                        var msg = [];
                        for (var i = 0; i < rows.length; i++) {

                            var row = rows[i];
                            var myDate = new Date(row.get('date')); 
                            msg.push('选中行的Date列:' + myDate.toLocaleString()); //转换时间格式

                        }
                        alert(msg.join('\n'));

                    }
                }
                ],
                selType: 'rowmodel',  //选择模式为 行选择
                simpleSelect: true,    //简单选择功能开启
                multiSelect: true,       // 启用多行选择
                enableKeyNav: true     //启用键盘导航

 

复选框选择:

效果:

tbar: [
               {
                   text: '取得所选行',
                   handler: function () {

                       var rows = grid.getSelectionModel().getSelection(); //getSelection();获取当前选中的记录数组
                       var msg = [];
                       for (var i = 0; i < rows.length; i++) {

                           var row = rows[i];
                           var myDate = new Date(row.get('date'));

                           var s = grid.getStore();            //获取grid的数据源
                           var number = s.indexOf(row) + 1;       //获取行号+1  因为行号从0开始

                           msg.push('选中第' + number + '行的Date列:' + myDate.toLocaleString());

                       }
                       alert(msg.join('\n'));

                   }
               }
               ],
               selType: 'checkboxmodel',  //选择模式为 行选择
               simpleSelect: true,    //简单选择功能开启
               multiSelect: true,       // 启用多行选择
               enableKeyNav: true     //启用键盘导航

表格特性: Feature

表格汇总 Ext.grid.feature.Summary

汇总值计算 根据表格的每一列进行计算,计算方式 有指定的 summaryType决定.默认的有

上图5种.

此例应用 sum和average

Ext.define('TestResult', {
                extend: 'Ext.data.Model',
                fields: ['student', {
                    name: 'mark',
                    type: 'int'
                }]
            });

            var grid = Ext.create('Ext.grid.Panel', {
                width: 200,
                height: 140,
                renderTo: document.body,
                features: [{
                    ftype: 'summary'
                }],
                store: {
                    model: 'TestResult',
                    data: [{
                        student: 'Student 1',
                        mark: 84
                    }, {
                        student: 'Student 2',
                        mark: 72
                    }, {
                        student: 'Student 3',
                        mark: 96
                    }, {
                        student: 'Student 4',
                        mark: 68
                    }]
                },
                columns: [{
                    dataIndex: 'student',
                    text: 'Name',
                    summaryType: 'count',  //进行汇总的列名
                    summaryRenderer: function (value) {
                        grid.getStore()
                        return Ext.String.format('{0} student{1}', value, value !== 1 ? 's' : '');
                    }
                }, {
                    dataIndex: 'mark',
                    text: 'Mark',
                    summaryType: 'average'
                }]
            })
            var grid = Ext.create('Ext.grid.Panel', {
                width: 200,
                height: 140,
                renderTo: document.body,
                features: [{
                    ftype: 'summary'
                }],
                store: {
                    model: 'TestResult',
                    data: [{
                        student: 'Student 1',
                        mark: 84
                    }, {
                        student: 'Student 2',
                        mark: 72
                    }, {
                        student: 'Student 3',
                        mark: 96
                    }, {
                        student: 'Student 4',
                        mark: 68
                    }]
                },
                columns: [{
                    dataIndex: 'student',
                    text: 'Name',
                    summaryType: 'count',  //进行汇总的列名
                    summaryRenderer: function (value) {
                      //  grid.getStore()
                        return Ext.String.format('{0} student{1}', value, value !== 1 ? 's' : '');
                    }
                }, {
                    dataIndex: 'mark',
                    text: 'Mark',
                    summaryType: 'average',

,
                    summaryRenderer: function (value) {
                        // grid.getStore()
                        return Ext.String.format(' 平均分为:{0}', value);


                }]
            })

 

表格分组:Ext.grid.feature.Grouping

代码:

Ext.define('TestResult', {
              extend: 'Ext.data.Model',
              fields: ['student', 'class', {
                  name: 'mark',
                  type: 'int'
              }]
          });

          var grid = Ext.create('Ext.grid.Panel', {
              width: 400,
              height: 300,
              renderTo: document.body,
              features: [
                 Ext.create('Ext.grid.feature.Grouping',
              {

                  groupByText: '用本字段分组',
                  showGroupsText: '显示分组',
                  groupHeaderTpl: '班级: {name} ({rows.length})',   //分组显示的模板
                  startCollapsed: true  //设置初始分组是不是收起
              })
              ],
              store: {
                  model: 'TestResult',
                  groupField: 'class',
                  data: [{
                      student: 'Student 1',
                      class: '1',
                      mark: 84
                  }, {
                      student: 'Student 2',
                      class: '1',
                      mark: 72
                  }, {
                      student: 'Student 3',
                      class: '2',
                      mark: 96
                  }, {
                      student: 'Student 4',
                      class: '2',
                      mark: 68
                  }]
              },
              columns: [{
                  dataIndex: 'student',
                  text: 'Name',
                  summaryType: 'count',  //进行汇总的列名
                  summaryRenderer: function (value) {
                      grid.getStore()
                      return Ext.String.format('{0} student{1}', value, value !== 1 ? 's' : '');
                  }
              }, {
                  dataIndex: 'mark',
                  text: 'Mark',
                  summaryType: 'average'
              },
              { dataIndex: 'class',
                  text: 'class'


              }]
          })

//在不同的列下面点击 “用本字段分组”那么表格就会立即改变分组规则.

 

表格的分组汇总:Ext.grid.feature.GroupSummary

代码只需要把上面的  Grouping 改成 GroupingSummary

 

表格插件: plugin

单元格编辑 Ext.grid.plugin.CellEditing

代码:

var datas = [['gao', Date(1922, 02, 03), 2000]];
           Ext.create('Ext.grid.Panel', {

               title: '演示',
               frame: true,
               renderTo: Ext.getBody(),
               width: 400,
               height: 300,

               store: {
                   fields: ['name', 'birth', 'salary'],
                   data: datas,
                   proxy: {
                       type: 'memory',
                       data: datas,
                       reader: 'array'
                   },
                   autoLoad: true
               },
               plugins: [
                  Ext.create('Ext.grid.plugin.CellEditing', {

                      clicksToEdit: 1
                  })
               ],
               selType: 'cellmodel',
               columns: [Ext.create('Ext.grid.RowNumberer', { text: '行号', width: 40 }),
               {
                   header: '姓名',
                   width: 80,
                   dataIndex: 'name',
                   editor: {//定义字段
                       xtype: 'textfield',
                       allowBlank: false,

                   }
               }
               ,
                {
                    header: '生日',
                    width: 100,
                    dataIndex: 'birth',
                    xtype: 'datecolumn',
                    editor: {//定义字段
                        xtype: 'datefield',
                        format: 'Y-m-d',
                        allowBlank: false
                    }
                }
                ,
                {
                    header: '工资',
                    width: 100,
                    dataIndex: 'salary', xtype: 'numbercolumn',
                    editor: {//定义字段
                        xtype: 'numberfield',
                        format: '$0,000',
                        allowBlank: false
                    }
                }
                ]


           })

表格 行编辑器Ext.grid.plugin.RowEditing

代码只需:把 CellEditing 改成 RowEditing

想要获取修改后的数据,ajax请求服务器,做出响应.

grid.on('edit', onEdit, this);  //添加编辑事件,获取数据
          function onEdit(e) {
              alert(e.record.get('name'));  //get()参数是字段名字.
          }

 

 

gridpanel中的checkbox列 根据数据库值 来初始化是否被选

listeners: {
  load: function(store) {
   var index = 0;
   store.each(function(record) {
    if(record.data.column_name == '1') {  //column_name 替换成你的列名, '1' 替换成你的值
     grid.selModel.selectRow(index,true);
    }
    index++;
   })
  }
}


这篇关于Extjs4 GridPanel 的几种样式详解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/923417

相关文章

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

C#数据结构之字符串(string)详解

《C#数据结构之字符串(string)详解》:本文主要介绍C#数据结构之字符串(string),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录转义字符序列字符串的创建字符串的声明null字符串与空字符串重复单字符字符串的构造字符串的属性和常用方法属性常用方法总结摘

Java中StopWatch的使用示例详解

《Java中StopWatch的使用示例详解》stopWatch是org.springframework.util包下的一个工具类,使用它可直观的输出代码执行耗时,以及执行时间百分比,这篇文章主要介绍... 目录stopWatch 是org.springframework.util 包下的一个工具类,使用它

Java进行文件格式校验的方案详解

《Java进行文件格式校验的方案详解》这篇文章主要为大家详细介绍了Java中进行文件格式校验的相关方案,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、背景异常现象原因排查用户的无心之过二、解决方案Magandroidic Number判断主流检测库对比Tika的使用区分zip

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2

一文详解SpringBoot响应压缩功能的配置与优化

《一文详解SpringBoot响应压缩功能的配置与优化》SpringBoot的响应压缩功能基于智能协商机制,需同时满足很多条件,本文主要为大家详细介绍了SpringBoot响应压缩功能的配置与优化,需... 目录一、核心工作机制1.1 自动协商触发条件1.2 压缩处理流程二、配置方案详解2.1 基础YAML