Right little issue here.
will fix it soon.
TODO :
in your models/fields/ckeditor.php file
Add, some followers :
$this->input = JDom::_('html.form.input.editor', array_merge(array(
'dataKey' => $this->getOption('name'),
//HERE
'width' => $this->getOption('width'),
'height' => $this->getOption('height'),
//OR ALSO
'cols' => $this->getOption('cols'),
'rows' => $this->getOption('rows'),
'dataValue' => $this->value,
'domClass' => (isset($this->element['class'])?$this->element['class']:null),
'formControl' => $this->formControl
), $this->jdomOptions));
This added code, is furnishing the datas from xml to jDom.
That's it.
Not tested, but should work.