Vivek Parmar
Vivek Parmar

Reputation: 771

Rich Text Editor inside Flux Form

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>

Upvotes: 2

Views: 1647

Answers (1)

Vishal Tanna
Vishal Tanna

Reputation: 1305

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">

Please Enable Rich Text Editor From Tools >> User Setting >> Edit & Advanced functions.

For More Help You can see here

Upvotes: 4

Related Questions