Hi Guys
I am getting problem with Dialog. In my Dialog I have created the image field which accepts image from dam by Drag and drop. Whil Iam dropping the image it is showing up inside the Dialog properly and is showing up on the screen also But when I try to edit the image the current image got vanished inside the dialog. I don't understand why it is happening?
while uploading
The above image is not showing up while editing. Could you please help me where I am doing wrong?
here is my dialog.xml
<normalmode | |
jcr:primaryType="cq:Widget" | |
collapsed="{Boolean}false" | |
collapsible="{Boolean}false" | |
hidden="{Boolean}false" | |
title="Picture Properties" | |
xtype="dialogfieldset"> | |
<items jcr:primaryType="cq:WidgetCollection"> | |
<pictureurl | |
jcr:primaryType="cq:Widget" | |
allowUpload="{Boolean}true" | |
autoUploadDelay="1" | |
ddGroups="[media]" | |
fieldLabel="Picture Link" | |
fileNameParameter="./fileName" | |
fileReferenceParameter="./fileReference" | |
height="{Long}200" | |
name="./file" | |
requestSuffix="/image.img.png" | |
rootpath="/etc/designs/aib/business/images" | |
sizeLimit="100" | |
uploadUrl="/tmp/upload_test/*" | |
xtype="html5smartimage"/> | |
<picturealttext | |
jcr:primaryType="cq:Widget" | |
fieldLabel="Picture Alt Text" | |
name="./picturealttext" | |
xtype="textfield"/> | |
<picturetitletext | |
jcr:primaryType="cq:Widget" | |
fieldLabel="Picture Title Text" | |
name="./picturetitletext" | |
xtype="textfield"/> | |
</items> | |
</normalmode> |
Cheers
Kirthi