ExtJS GridPanel with a column to upload a file

294 Views Asked by At

I want to have Ext.Grid.Panel with some text columns and one column to upload a file.

1

There are 1 best solutions below

0
On

You can use widgetcolumn with filefield widget.

Code snippet:

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