使图像在Magnolia中可编辑

时间:2015-08-06 09:56:08

标签: magnolia

我正在使用玉兰花创建模板。我想提供编辑图像的选项。使用玉兰5.4我正在创建模板。为了编辑我页面中的图像,我创建了该区域。我的代码如下:

templateScript: /hello-magnolia/templates/pages/hello.ftl
renderType: freemarker
visible: true
title: Hello
dialog: hello-magnolia:pages/hello
areas:
   main:
   renderType: freemarker
   availableComponents:
      quotation:
      id: hello-magnolia:components/quotation
      textImage:
      id: hello-magnolia:components/txtimg

txtimg.yaml:

   form:
    tabs:
     - name: tabImage
       label: Image
     fields:
       - name: upload
         class: info.magnolia.dam.app.ui.field.definition.DamUploadFieldDefinition
         label: Upload
   actions:
   commit:
       class:     info.magnolia.ui.admincentral.dialog.action.SaveDialogActionDefinition
   cancel:
       class: info.magnolia.ui.admincentral.dialog.action.CancelDialogActionDefinition

当我测试此代码时,我的页面未加载。当我删除最后两行时,它正确加载。我定义了正确的路径,并为图像定义了表单定义和字段定义。

如何使用jsp使我的图像可编辑。

此外,我如何检查图像是否可用的条件。

任何人都可以帮助我

1 个答案:

答案 0 :(得分:0)

texting.yaml中提交和取消操作的缩进不正确。看起来您可能在提交操作的类名之前有错误的选项卡。定义采用yaml格式,因此它对缩进非常敏感。