可以通过文件上传制作 GridPanel。
我想让 GridPanel 有一些文本列和一列来上传文件。
dataIndex:'fieldForFile',
editor: {
xtype:'filefield'
}
有效,但是当我选择一个文件并且渲染器消失时,记录值为空。
下一步是上传在网格中选择的文件,目前我不知道该怎么做。
谁能帮我 ?
问候,帕维尔
可以通过文件上传制作 GridPanel。
我想让 GridPanel 有一些文本列和一列来上传文件。
dataIndex:'fieldForFile',
editor: {
xtype:'filefield'
}
有效,但是当我选择一个文件并且渲染器消失时,记录值为空。
下一步是上传在网格中选择的文件,目前我不知道该怎么做。
谁能帮我 ?
问候,帕维尔
xtype:'actioncolumn',
width: 30,
text: '^',
align: 'center',
items: [{
icon: '/Content/images/upload.png', // Use a URL in the icon config
tooltip: 'Upload',
handler: function(grid, rowIndex, colIndex) {
var uploadField = Ext.getCmp('uploadField');
uploadField.fileInputEl.dom.click();
}
}]