Make the editor vertically and horizontally stretched in the page

  •  07-20-2010, 4:53 AM

    Make the editor vertically and horizontally stretched in the page

    Hello,
     
    I am currently evaluating your product.
    I am trying to make the editor stretch 100% in the page both vertically and horizontally.
    I have a simple web form in which i put the editor.

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    <style type="text/css">  
    html, body, form{ height: 100%;}   
    </style>  
    </head>  
    </head>
    <body style="margin:0px">
        <form id="form1" runat="server" >
     <CE:Editor ID="Editor1" runat="server"
                    ConfigurationPath="~/cuteeditor.config"
                    ActiveTab="View"
                    ResizeMode="None"
                    ShowWordCount="False"
                    Height="100%" Width="100%">
                </CE:Editor>
        </form>
    </body>
    </html>
     
    It doesn't work.  Switching between the tabs make it even worse.
    Can you please help me how make the editor look stretched?
     
    Thanks!
    Mike.
View Complete Thread