本文介绍了Flux表单内的RTF编辑器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用助焊剂,我想使用助焊剂以后端形式显示rte(富文本编辑器).
I am using flux and I want to display rte(Rich text editor) in backend form using flux.
<f:section name="Configuration">
//...Here i want to display rte element
</f:section>
推荐答案
通过Flux Form,您可以使用以下代码
With Flux Form you can use Below code
<f:section name="Configuration">
<flux:field.text name="Text" label="Whatever" enableRichText="1" />
</f:section>
在表格中,您可以在下面使用
In the Form You can use below
<f:section name="Main">
<f:format.html>{Text}</f:format.html>
<f:section name="Main">
请从Tools >> User Setting >> Edit & Advanced functions.
Please Enable Rich Text Editor From Tools >> User Setting >> Edit & Advanced functions.
获得更多帮助,您可以请参见此处
For More Help You can see here
这篇关于Flux表单内的RTF编辑器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!