Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Since it is a textarea , i tried cols="50" in html attribute but it does not work.

Also , i found the answer from the previous question . He said i can do this by adding CKEDITOR.instances.myinstance.resize(1000, 900); however , the size still have not changed.

Here is the code i attempted, thank you

Updated

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <script src="../plugin/jquery-1.6.1.min.js"></script>
    <script src="../plugin/jquery.validate.min.js"></script>
    <script type="text/javascript" src="../plugin/ckeditor/ckeditor.js"></script>

    <script>
$(document).ready(function(){   
$("#addlist").validate();
var editor = CKEDITOR.replace('editor1');
var div = document.getElementById('editor');
editor.resize($(div).width(),'900');
}); 
    </script>
</head>
<body>
    <form method="post" action="confirm.php">
        <p><br />
        <div id="editor">
            <textarea id="editor1" name="editor1">
            </div>
            <? if (isset($_GET['file']))
            {$filepath=$_GET['file']; 
                require_once("../template/".$filepath);}?> </textarea>
        </p>
        </br>
            File Name </br>
            <b>(Naming Without .html e.g. MyTemplate1) :</b>
            </br>
            <input id="tname" name="tname" class="required" />

            <input type="submit" />

        </p>
    </form>
</body>
</html>
share|improve this question

4 Answers

up vote 4 down vote accepted

try following

To achieve this, use the resize function to define the dimensions of the editor interface, assigning the window a width and height value in pixels or CSS-accepted units.

// Set editor width to 100% and height to 350px.
editor.resize( '100%', '350' )

While setting the height value, use the isContentHeight parameter to decide whether the value applies to the whole editor interface or just the editing area.

// The height value now applies to the editing area.
editor.resize( '100%', '350', true )

http://docs.cksource.com/CKEditor_3.x/Howto/Editor_Size_On_The_Fly

share|improve this answer
thanks. but what file exactly i have to modify? would you mind explain it? – user782104 Apr 3 '12 at 9:18
refer jsfiddle jsfiddle.net/lathan/mxuNz – Hemant Metalia Apr 3 '12 at 9:20
Thx again, is it necessary to have a outter before i can change the size? – user782104 Apr 3 '12 at 9:29
jsfiddle.net/x2NQT – user782104 Apr 3 '12 at 9:30
not at all thats do not – Hemant Metalia Apr 3 '12 at 9:30
show 11 more comments

Will it size using CSS:

#editor1 { width: 1000px; height: 900px; }

Either in the head or the CSS file?

share|improve this answer
not works .......... – user782104 Apr 3 '12 at 9:16

As stated in other answers the resize() function is what must be used. For those who are wondering how this code can be used editor.resize( '100%', '350' ) see below.

Suppose you create an editor for a textarea with name attribute test. Then you can call the resize() function on the instance of the CKEditor like this:

CKEDITOR.instances.test.resize( '100%', '80');
share|improve this answer

For CKEditor 4.0, I had to use:

  CKEDITOR.replace('body', {height: 500});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.