Re: AutoExpand Height to fill page?

  •  08-21-2009, 1:09 AM

    Re: AutoExpand Height to fill page?

    Hi Lozzi,
     
    Try this example
    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.   
    7. <html xmlns="http://www.w3.org/1999/xhtml">   
    8. <head id="Head1" runat="server">   
    9.     <title>Untitled Page</title>   
    10. </head>   
    11. <body>   
    12.     <form id="form1" runat="server">   
    13.         <div>   
    14.             <CE:Editor ID="editor1" runat="server"  ResizeMode=AutoAdjust>   
    15.             </CE:Editor>   
    16.            
    17.         </div>   
    18.     </form>   
    19. </body>   
    20. </html>   
    21.   
    22. <script type="text/javascript">   
    23. setInterval("refreshTime()",1000);   
    24. function refreshTime()   
    25. {   
    26. var editor=document.getElementById('<%= editor1.ClientID%>');   
    27. editor.style.height= Math.max( document.body.clientHeight , document.documentElement.clientHeight )-50+"px"  
    28. }   
    29. </script>  
    Regards,
     
    Ken
View Complete Thread