0

我有这个领域:

{
    xtype: 'filefield',
    labelAlign: 'top',
    id: 'fileAllegato',
    hidden: true,
    margin: '0 15 5 10',
    fieldLabel: 'Allegato',
    allowBlank: false,
    blankText:'Il campo &egrave obbligatorio!',
    typeAhead: true,
    selectOnFocus: true,   
    anchor: '100%',
    buttonText: 'Allega'
}

当我加载文件时,我想将它保存在 db 中。该字段不属于表单,因此我无法提交。我能怎么做?

4

2 回答 2

3

您可以创建一个虚拟表单(甚至不显示它)。就像是

var f = Ext.create('Ext.form.Panel', {
   items: [ your filefield item ]
})

然后提交。

于 2012-05-17T15:09:27.303 回答
0
items: [{
    xtype: 'filefield',
    name: 'file',
    fieldLabel: 'File',
    labelWidth: 50,
    anchor: '100%',
    buttonText: 'Select File...'
}],

现场演示在这里

于 2014-02-20T12:17:20.883 回答