We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

RichTextEditor (RTE) does not show resizing control

I made simple RTE without toolbar controls and I want to give user possibility to resize RTE, as it can do with plain html "textarea".
My code is below, but I do not see resizing control, I do not know what is the problem ?

<body>
        <textarea id ="texteditor"></textarea>       
</body>

<script type="text/javascript">
       $("#texteditor").ejRTE({
            showToolbar: false,
            enableResize: true,
        });
</script>


Regards,
Milos

3 Replies

KR Keerthana Rajendran Syncfusion Team July 19, 2016 07:06 AM UTC

Hi Milos,   
  
Thank you for contacting Syncfusion support.   
   
We have analyzed your code and found that you have used only enableResize property of RTE.As resizable option will be added in the footer of RTE. We suggest you to set the showFooter property as “true”.   
  
<code>   
<script type="text/javascript">   
        $(function () {   
          $("#rteSample").ejRTE({   
            width:"100%",    
            minWidth:"100px",   
            isResponsive:true,   
            showToolbar:false,   
            showFooter:true,  //To display the footer of RTE   
            enableResize:true, //To enable Resize in RTE   
            showClearFormat:false, //To hide clearFormat option in footer   
            showCharCount: false , //To hide character count in footer   
            showWordCount: false  //To hide word count in footer   
          });   
        });   
    </script>            
</code>   
  
   
   
We have prepared a sample for your reference. Please refer the below given link:  
  
  
  
Regards,   
Keerthana.   
 



MI Milos July 19, 2016 07:52 AM UTC

Hi Keerthana,

Thank you, that is what i needed.

Reagrads,
Milos


KR Keerthana Rajendran Syncfusion Team July 20, 2016 03:37 AM UTC

Hi Milos, 

Thank you for your update. Please get back to us if you have further queries. We will be happy to assist you 

Regards, 
Keerthana. 


Loader.
Live Chat Icon For mobile
Up arrow icon