首页 > 解决方案 > ExtJS GridPanel 用一列上传文件

问题描述

我想要Ext.Grid.Panel一些文本列和一列来上传文件。

标签: extjs6.2

解决方案


您可以使用widgetcolumnfilefield部件。

代码片段:

{
    xtype: 'widgetcolumn',
    dataIndex: 'signature',
    widget: {
        xtype: 'filefield',
        name: 'signature'
    }
}

推荐阅读