Re: CuteEditor 6.7 & jQuery Tabs

  •  07-07-2014, 1:30 PM

    Re: CuteEditor 6.7 & jQuery Tabs

    Hi,

     

    Yes it has about 130 px different when use in the tab, not sure why too. You can try the code below, it should shows the same height with 200px height.

     

    1. <script type="text/javascript">  
    2. function CuteEditor_OnInitialized(editor)  
    3. {  
    4.   setTimeout(setHeight,200);  
    5. }  
    6. function setHeight()  
    7. {  
    8.     var editor1=document.getElementById("<%= editor1.ClientID %>");  
    9.     var editor2=document.getElementById("<%= editor2.ClientID %>");  
    10.     editor1.SetHeight(200);  
    11.     editor2.SetHeight(66);  
    12. }  
    13. </script>  
     

    Regards,

     

    Ken 

View Complete Thread