Я новичок в гибридах. У меня есть сценарий, когда мне нужно изменить описание продукта из текстового редактора в обычный текстовый редактор в hmc. По умолчанию мы можем увидеть богатый текстовый редактор в HMC для описания поляКак изменить текстовый редактор в обычный текстовый редактор в hmc
0
A
ответ
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
Просто удалите или вы можете использовать обычный <textareaeditor/>
.
Для примера: yourcoreextension -> HMC -> ресурс -> hmc.xml
поставил этот конфиг ->
<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>