Where can i set the height and width of the input window?
When i use the drag to resize in the bottom right the window expands out of the <div> and i only see half the window.
My config >
<head>
<script type="text/javascript" src="includes/ckeditor/ckeditor.js"></script>
</head>
<textarea name="newstext"></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'newstext',
{
toolbar : 'Basic',
uiColor : '#eeeeee'
});
When i use the drag to resize in the bottom right the window expands out of the <div> and i only see half the window.
My config >
<head>
<script type="text/javascript" src="includes/ckeditor/ckeditor.js"></script>
</head>
<textarea name="newstext"></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'newstext',
{
toolbar : 'Basic',
uiColor : '#eeeeee'
});
Re: Where do i set the height and widht ?
Re: Where do i set the height and widht ?
is there a way to have a fixed size and remove the resize feature in that is located at the bottom right corner?
Re: Where do i set the height and widht ?
The config looks something like this.
There are more options that can be listed in this list.
see the documentation of ckeditor for them.
Best Regards,
Ben Zegveld.
Re: Where do i set the height and widht ?
Here is my config.js:
As the OP said, whenever I try to resize the editor is expands well beyond the resize_maxWidth. I'd really like to be able to use resizing but this is untenable. Anyone seen this behavior and got any ideas where I can start looking?
Earl
Re: Where do i set the height and widht ?
Ever figure out a solution to this problem? I'm dealing with it right now and it's a little frustrating.
Earl
Re: Where do i set the height and widht ?
Same Problem here.
config.resize_maxWidth = ... ignored
Firebug tells me a element style width of 750 in
any helpful hints? Is this hardcoded in any file? Where comes this 750px from??? Not from me and my css.
i've searched the root folder for the string '750' and found just one(!) file. In the ckeditor.js is something like 'resize_minWidth=750'. And thats the solution.
Thank You
Okay - few seconds later -
I had only set the maxWidth, but not the minWidth. Sure, if the minWidth is 750, then it will growing on resize to this state. I have added the minWidth and the maxWidth with the same value twice and its clearly the.
For anything who need this: just add your values for both: eg. width 500
cheers, MJ
Re: Where do i set the height and widht ?
Earl