silve69
22 Jul 2009, 9:50 AM
Hi guys,
I have the follow code inside a form panel... the idea is upload a picture but show a picture preview before... but the code doesn't work.
...
some code here
...
{
xtype:'box',
id: 'box_content',
autoHeight: true,
autoEl:{
tag: 'img',
src:'../img/data/no_image_profile.jpg'
}
},{
xtype: 'fileuploadfield',
emptyText: 'Select your picture',
fieldLabel: 'Change Picture',
name: 'photo-path',
width: 400,
listeners: {
'fileselected': function(fb, v){
Ext.getCmp('box_content').getEl().dom.src = v;
}
}
}
...
some code here
...
Somebody know another way to do that, or can help me to fix the code??
Best regards,
Silver
I have the follow code inside a form panel... the idea is upload a picture but show a picture preview before... but the code doesn't work.
...
some code here
...
{
xtype:'box',
id: 'box_content',
autoHeight: true,
autoEl:{
tag: 'img',
src:'../img/data/no_image_profile.jpg'
}
},{
xtype: 'fileuploadfield',
emptyText: 'Select your picture',
fieldLabel: 'Change Picture',
name: 'photo-path',
width: 400,
listeners: {
'fileselected': function(fb, v){
Ext.getCmp('box_content').getEl().dom.src = v;
}
}
}
...
some code here
...
Somebody know another way to do that, or can help me to fix the code??
Best regards,
Silver