]> git.proxmox.com Git - extjs.git/blob - extjs/modern/modern/src/grid/column/Text.js
import ExtJS 7.0.0 GPL
[extjs.git] / extjs / modern / modern / src / grid / column / Text.js
1 /**
2 * A column for simple {@link Ext.grid.cell.Text text cell}s.
3 */
4 Ext.define('Ext.grid.column.Text', {
5 extend: 'Ext.grid.column.Column',
6
7 requires: [
8 'Ext.grid.cell.Text'
9 ],
10
11 xtype: 'textcolumn',
12
13 cell: {
14 xtype: 'textcell'
15 }
16 });