如何在 ExtJS 6/7 中通过列索引获取 dataIndex

how to get dataIndex by column index in ExtJS 6/7

这适用于旧版本:

var dataIndex = grid.getHeaderCt().getHeaderAtIndex(columnIndex).dataIndex; 

我需要 ExtJS 7 的确切功能。

我注意到在较新的版本中,您可以使用 grid.getHeader() 获得 header,但我无法从 Ext.panel.Header 中找到任何可以给我 dataIndex 的方法。

谢谢。

有许多不同的方法可以使用索引从网格中获取 dataIndex。以下是其中的一些:

grid.getHeaderContainer().getHeaderAtIndex(index).dataIndex;

grid.getColumnManager().getHeaderAtIndex(index).dataIndex;

grid.getColumns()[index].dataIndex;

您不应该查看 Ext.panel.Header,因为它包含与包含标题的网格 header 相关的配置。相反,请查看 Ext.grid.header.Container,其中将包含与网格列 header 相关的配置。请参阅文档 link: https://docs.sencha.com/extjs/6.5.3/classic/Ext.grid.header.Container.html