EXTJS-基本网格蓝图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EXTJS-基本网格蓝图相关的知识,希望对你有一定的参考价值。

  1. /**
  2. * generate a grid, it so commonly used that i decided to make it easy to initiate
  3. */
  4.  
  5. var getNewGrid = function (id, store, columns) {
  6.  
  7. var store = store || new Ext.data.JsonStore({
  8. url: 'get-images.php',
  9. root: 'elements',
  10. fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
  11. });
  12.  
  13. var columns = columns || [
  14. {id: 'name', header: 'Name', sortable: true, dataIndex: 'name'},
  15. {header: 'Modified', width: 120, sortable: true, dataIndex: 'modified'},
  16. {header: 'Type', width: 120, sortable: true, dataIndex: 'type', readOnly: false},
  17. {header: 'Size', width: 120, sortable: true, dataIndex: 'size', align: 'right'}
  18. ]
  19.  
  20. return {
  21. id : id
  22. ,xtype : 'grid'
  23. ,store : store
  24. ,columns : columns
  25. ,autoLoad : false
  26. }
  27. } // eo function
  28.  

以上是关于EXTJS-基本网格蓝图的主要内容,如果未能解决你的问题,请参考以下文章

在 ExtJs 4.1 中使用一个网格作为分组网格和普通网格

ExtJS/MODx CMP:网格编辑不保存到数据库,组合框不显示

如何正确对齐 ExtJs 网格

ExtJS:检测网格数据更改的网格面板事件是啥

EXTJS 4 网格与分页不起作用---存储代理问题

ExtJs 4.1 网格的分组功能启用和禁用问题