Re: Using CuteEditor with dynamic height?

  •  09-07-2012, 7:17 AM

    Re: Using CuteEditor with dynamic height?

    Hi empty,

     

    The editor has not the setting to adjust the height as its parent control. You can adjust the height of editor when the user drop the splitter by the code below.

     

    <script>
    function adjustHeight()
    {
        var editor1=document.getElementById("<%= editor1.ClientID %>");
        editor1.SetHeight(1000);
    }
    </script>
     

    Regards,

     

    Ken 

View Complete Thread