Handsontable,自定义文本编辑器,复制/粘贴问题

时间:2017-05-01 12:11:45

标签: javascript angularjs handsontable

我有一个包含两列的表:名称和代码。我为代码列创建了一个简单的自定义编辑器。这个想法是,当用户双击单元格时,将打开带有代码编辑器的自定义对话框。我已实现它并在此处发布了简化示例:

Link to plunker

但是,我有一个复制/粘贴功能问题:如果我使用我的编辑器,编辑单元格的一些代码,按“保存”,“代码”列值似乎正确保存。但是当我选择此单元格并按Ctrl + C时,不会复制该值。

问题是:在实施自定义编辑器的过程中,这是一个错误信息还是我错过了什么?我应该如何更改自定义编辑器以使复制粘贴功能正常工作。

编辑代码:

var ScriptEditor = Handsontable.editors.TextEditor.prototype.extend();

ScriptEditor.prototype.getValue = function () {
    return this.TEXTAREA.value;
};

ScriptEditor.prototype.setValue = function (value) {
    this.TEXTAREA.value = value;
};

ScriptEditor.prototype.open = function () {

    var self = this;

    this.instance.deselectCell();

    var value = self.instance.getDataAtCell(self.row, self.col);
    var decodedCode = decodeURI(value);

    var success = function (resultCode) {
        var encodedCode = encodeURI(resultCode);

        self.instance.setDataAtCell(self.row, self.col, encodedCode, 'edit');
        self.instance.selectCell(self.row, self.col);
    };

    openEditor(decodedCode)
            .then(success);

};

ScriptEditor.prototype.focus = function () {
    Handsontable.editors.TextEditor.prototype.focus.apply(this, arguments);
};

ScriptEditor.prototype.close = function () {

};


var openEditor = function (codeToEdit) {

    var deferred = $q.defer();

    var dialog = ngDialog.open({
        template: 'editorTemplate.htm',
        className: 'ngdialog-theme-default',
        controllerAs: "editor",
        controller: function () {
            var vm = this;
            vm.inputCode = codeToEdit;
            vm.submitChanges = function () {
                dialog.close();
                deferred.resolve(vm.inputCode);
            };
        }
    });

    return deferred.promise;
};

规格: 角度版本:1.6.1 Handsontable版本:0.31.2 Chrome版本:版本58.0.3029.81

1 个答案:

答案 0 :(得分:0)

我在handontable github repositiory上发布了一个问题,并在那里收到了答案。问题链接:here

<强>解决方案: 就像团队成员提出的那样,在打开我的对话框之前打开函数我打电话给this.instance.deselectCell();。但是,使用此解决方案时,问题是,如果我按Enter键进入我的代码编辑器对话框,则不会插入新行,但会选择handontable中的下一个单元格。然后,我在setTimeout()中填写了这个电话,并且它已经完成了。

链接到plunker: here

工作代码是:

ScriptEditor.prototype.open = function () {

    var self = this;

    setTimeout(function () {
        self.instance.deselectCell();
    });

    var value = self.instance.getDataAtCell(self.row, self.col);
    var decodedCode = decodeURI(value);

    var success = function (resultCode) {
        var encodedCode = encodeURI(resultCode);
        self.instance.setDataAtCell(self.row, self.col, encodedCode, 'edit');
        self.instance.selectCell(self.row, self.col);
    };

    openEditor(decodedCode)
        .then(success);

};