我使用sencha touch來創建form.fieldset。在我的模型中,我有一個圖像字段,我該如何顯示模型的當前圖像?像我form.fieldset樣子:帶sencha觸摸的圖像字段
/**
* This is used by the NestedList example to allow editing of an item in the Store
*/
Ext.define('ParkingSencha.view.EditorPanel', {
extend: 'Ext.form.Panel',
requires: ['Ext.form.FieldSet'],
id: 'editorPanel',
config: {
modal: true,
hideOnMaskTap: false,
centered: true,
width: 500,
scrollable: false,
items: [{
xtype: 'fieldset',
items: [
{
xtype: 'textfield',
name: 'keyword',
label: 'Mots clés'
},
{
xtype: 'textfield',
name: 'title',
label: 'Titre'
},
{
xtype: 'textfield',
name: 'image',
label: 'image'
}
]
}]
}]
}
});
你想你的圖像被加載到你的第三個文本區域? –
你的圖像存儲在哪裏? –
是的,我想加載它在第三個文本框。我的圖像存儲在我的服務器上。 – Sebastien