如何在hmc中将富文本编辑器更改为普通文本编辑器

时间:2016-05-24 06:26:44

标签: hybris

我是hybris的新手。我有一个场景,我需要将产品描述从富文本编辑器更改为hmc中的普通文本编辑器。 默认情况下,我们可以在hmc中看到描述字段

的富文本编辑器

1 个答案:

答案 0 :(得分:1)

尝试替换

<section name="product.descriptions">
              <listlayout>
                 <attribute name="description">
                    <wysiwygeditor/>
                 </attribute>
                 <attribute name="unit"/>
              </listlayout>
           </section>

      <section name="product.descriptions" mode="replace">
              <listlayout>
                 <attribute name="description"/>
                 <attribute name="unit"/>
              </listlayout>
           </section>

在您的核心扩展hmc.xml

只需删除<wysiwygeditor/>,即可使用普通<textareaeditor/>

例如:yourcoreextension - &gt; hmc - &gt;资源 - &gt; hmc.xml

把这个配置 - &gt;

<type name="Product" mode="append">
  <organizer>
    <editor mode="append"> 
      <tab name="tab.product.properties" position="1" mode="append">
        <section name="product.descriptions" mode="replace">
              <listlayout>
                 <attribute name="description"/>                                      
                 <attribute name="unit"/>
              </listlayout>
           </section>
      </tab>
     </editor>
  </organizer>
</type>