- Ext.js 教程
- Ext.js - 首页
- Ext.js - 概述
- Ext.js - 环境设置
- Ext.js - 命名约定
- Ext.js - 架构
- Ext.js - 第一个程序
- Ext.js - 类系统
- Ext.js - 容器
- Ext.js - 布局
- Ext.js - 组件
- Ext.js - 拖放
- Ext.js - 主题
- Ext.js - 自定义事件和监听器
- Ext.js - 数据
- Ext.js - 字体
- Ext.js - 样式
- Ext.js - 绘图
- Ext.js - 本地化
- Ext.js - 可访问性
- Ext.js - 调试代码
- Ext.js - 方法
- Ext.js 有用资源
- Ext.js - 常见问题解答
- Ext.js - 快速指南
- Ext.js - 有用资源
- Ext.js - 讨论
Ext.js - 网格
这是一个简单的组件,用于以表格格式显示数据,这些数据是存储在 Ext.data.Store 中的记录集合。
语法
以下是创建网格的简单语法。
Ext.create('Ext.grid.Panel',{
grid properties..
columns : [Columns]
});
示例
以下是一个显示网格的简单示例。
<!DOCTYPE html>
<html>
<head>
<link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css"
rel = "stylesheet" />
<script type = "text/javascript"
src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>
<script type = "text/javascript">
// Creation of data model
Ext.define('StudentDataModel', {
extend: 'Ext.data.Model',
fields: [
{name: 'name', mapping : 'name'},
{name: 'age', mapping : 'age'},
{name: 'marks', mapping : 'marks'}
]
});
Ext.onReady(function() {
// Store data
var myData = [
{ name : "Asha", age : "16", marks : "90" },
{ name : "Vinit", age : "18", marks : "95" },
{ name : "Anand", age : "20", marks : "68" },
{ name : "Niharika", age : "21", marks : "86" },
{ name : "Manali", age : "22", marks : "57" }
];
// Creation of first grid store
var gridStore = Ext.create('Ext.data.Store', {
model: 'StudentDataModel',
data: myData
});
// Creation of first grid
Ext.create('Ext.grid.Panel', {
id : 'gridId',
store : gridStore,
stripeRows : true,
title : 'Students Grid', // Title for the grid
renderTo :'gridDiv', // Div id where the grid has to be rendered
width : 600,
collapsible : true, // property to collapse grid
enableColumnMove :true, // property which allows column to move to different position by dragging that column.
enableColumnResize:true, // property which allows to resize column run time.
columns :
[{
header: "Student Name",
dataIndex: 'name',
id : 'name',
flex: 1, // property defines the amount of space this column is going to take in the grid container with respect to all.
sortable: true, // property to sort grid column data.
hideable: true // property which allows column to be hidden run time on user request.
},{
header: "Age",
dataIndex: 'age',
flex: .5,
sortable: true,
hideable: false // this column will not be available to be hidden.
},{
header: "Marks",
dataIndex: 'marks',
flex: .5,
sortable: true,
// renderer is used to manipulate data based on some conditions here
// who ever has marks greater than 75 will be displayed as
// 'Distinction' else 'Non Distinction'.
renderer : function (value, metadata, record, rowIndex, colIndex, store) {
if (value > 75) {
return "Distinction";
} else {
return "Non Distinction";
}
}
}]
});
});
</script>
</head>
<body>
<div id = "gridDiv"></div>
</body>
</html>
以上程序将产生以下结果:
网格属性
可折叠 - 此属性用于向网格添加折叠功能。在网格属性中添加"Collapsible : true" 功能即可添加此功能。
排序 - 此属性用于向网格添加排序功能。在网格中添加列属性 "sortable : true" 以应用升序/降序排序。默认情况下,它是 true。如果不想显示此功能,可以将其设置为 false。
columns : [{
header: "Student Name",
dataIndex: 'name',
id : 'name',
flex: 1,
sortable: true // property to sort grid column data
}]
默认情况下,可以使用存储中的属性sorters : {property: 'id', direction : 'ASC'}应用排序。它将在将数据渲染到网格之前,根据 sorters 中提供的属性和给定的方向对网格数据进行排序。
启用列调整大小 - 可以使用网格属性"enableColumnResize: true"调整列的大小(可以增加或减少其宽度)。
列可隐藏 - 在网格中添加列属性"hideable : true" 以显示或隐藏列。默认情况下,它是 true。如果不想显示此功能,可以将其设置为 false。
columns : [{
header: "Student Name",
dataIndex: 'name',
id : 'name',
flex: 1,
sortable: true,
hideable: true // property which allows column to be hidden run time on user request
}]
可拖动列 - 添加列属性"enableColumnMove: true" 是网格属性,我们可以使用它在网格中移动列。
渲染器 - 此属性用于根据从存储中获取的数据自定义网格数据的视图。
columns : [{
header: "Marks",
dataIndex: 'marks',
flex: .5,
sortable: true,
// renderer is used to manipulate data based on some conditions here who
// ever has marks greater than 75 will be displayed as 'Distinction'
// else 'Non Distinction'.
renderer : function (value, metadata, record, rowIndex, colIndex, store) {
if (value > 75) {
return "Distinction";
} else {
return "Non Distinction";
}
}
}]
注意 - 所有属性都在上面的网格示例中添加。请在“试一试”编辑器中尝试它们。
extjs_components.htm
广告