Regarding Auto Adjusting Height

Last post 07-13-2009, 10:04 AM by sanjay.joshi. 2 replies.
Sort Posts: Previous Next
  •  07-13-2009, 2:29 AM 53919

    Regarding Auto Adjusting Height

    Hi Adam/Kenneth,
     
    I have implemented the Auto adjusting height feature of the editor but need to make a max size upto which it can extend. Do we have any way by which we can set the max height of the editor after which we can have scroll bar in editor.
     
    Thanks,
    Sanjay
  •  07-13-2009, 3:14 AM 53922 in reply to 53919

    Re: Regarding Auto Adjusting Height

    Hi sanjay,
     
    Try this way:
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5.   
    6. <script type="text/javascript">   
    7. setInterval("refreshTime()",1000);   
    8.   
    9. function refreshTime()   
    10. {   
    11. var editor=document.getElementById('<%= editor1.ClientID%>');   
    12. var h=editor.GetDocument().body.scrollHeight;   
    13. if(h<170)h=170;   
    14. if(h>500)h=500;   
    15. editor.style.height=h+150+"px";   
    16.   
    17. }   
    18. </script>   
    19.   
    20. <html xmlns="http://www.w3.org/1999/xhtml">   
    21. <head id="Head1" runat="server">   
    22.     <title>Untitled Page</title>   
    23. </head>   
    24. <body>   
    25.     <form id="form1" runat="server">   
    26.         <div>   
    27.             <CE:Editor ID="editor1" runat="server">   
    28.             </CE:Editor>   
    29.         </div>   
    30.     </form>   
    31. </body>   
    32. </html>  
    Regards,
     
    Ken
  •  07-13-2009, 10:04 AM 53928 in reply to 53922

    Re: Regarding Auto Adjusting Height

    Hi Ken,
     
    Thanks for a quick reply.
     Actually the solution which you have send is not quite appropriate to our scenerio. Please provide some other solutions if you have to solve this problem
     
    Thanks,
    Sanjay 
     
View as RSS news feed in XML