function eXcell_ckeditor(cell) {
    this.cell = cell;
    this.grid = this.cell.parentNode.grid;
    this.edit = function() {
    };
    this.getValue = function() {
        return this.cell.firstChild.innerHTML
    };
    this.setValue = function(val) {
        this.setCValue("<div id=\"" + this.cell._attrs["id"] + "\" style=\"height:240px;\">" + val + "</div>", val)
    }
}
eXcell_ckeditor.prototype = new eXcell;
