我正在使用sen语制作一个表格。 实地调查。 在我的模型中,我有一个形象领域,我如何能够展示我模式的当前形象? 我的发言。 现场研究:
/**
* 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
}
]
}]
}]
}
});