0

当用户在 Ext.form.field.HtmlEditor (xtype:'htmleditor') 中输入文本时按 ctrl+enter 时,我试图发出 ajax 请求,但我不知道该怎么做。
我在“htmleditor”旁边有一个按钮,可以发送“htmleditor”的值,但我想使用 ctrl+enter 为该操作添加键盘快捷键。
将不胜感激一些帮助。

编辑:它需要用 ExtJS4 制作 - 不知何故,我必须在我的 htmleditor 对象中添加类似“keypress”监听器的东西......
这是代码..

this.htmleditor = this.addComment.add({
    region:'center',
    xtype:'htmleditor',
    margin:'0 0 0 0',
    enableSourceEdit:false,
    height:200
});
4

3 回答 3

4

您无法在默认 htmleditor 中侦听事件。所以你需要使用它的更新版本。

此代码可以帮助您(它适用于 extjs 3,因此您可能需要将其更改为 4 版本):

Cyber.ui.HtmlEditor = Ext.extend(Ext.form.HtmlEditor, {
        frame : true,
        initComponent : function() {
            Cyber.ui.HtmlEditor.superclass.initComponent.call(this);
            this.addEvents('submit');
        },
        initEditor : function() {
           Cyber.ui.HtmlEditor.superclass.initEditor.call(this);
            if (Ext.isGecko) {
                Ext.EventManager.on(this.doc, 'keypress', this.fireSubmit,
                        this);
            }
            if (Ext.isIE || Ext.isWebKit || Ext.isOpera) {
                Ext.EventManager.on(this.doc, 'keydown', this.fireSubmit,
                        this);
            }
        },
        fireSubmit : function(e) {
            if (e.ctrlKey && Ext.EventObject.ENTER == e.getKey()) {
                // Do what you need here
            }
        }
});

Ext.reg('customeditor', Cyber.ui.HtmlEditor);

并以您的形式:

this.htmleditor = this.addComment.add({
    region:'center',
    xtype:'customeditor',
    margin:'0 0 0 0',
    enableSourceEdit:false,
    height:200
});

我用 Extjs 4 玩了很多,并找到了方法(在使用 htmleditor 之前你只需要包含这个代码):

Ext.form.HtmlEditor.override({
    frame : true,
    initComponent: function() {
        this.callOverridden();
        this.addEvents('submit');
    },

    initEditor : function() {
        this.callOverridden();

        var me = this;
        var doc = me.getDoc();

        if (Ext.isGecko) {
            Ext.EventManager.on(doc, 'keypress', me.fireSubmit, me);
        }

        if (Ext.isIE || Ext.isWebKit || Ext.isOpera) {
            Ext.EventManager.on(doc, 'keydown', me.fireSubmit, me);
        }
    },

    fireSubmit : function(e) {
        if (e.ctrlKey && Ext.EventObject.ENTER == e.getKey()) {
            // Do what you need here
            alert('yes!');
        }
    }
});
于 2011-07-12T12:14:30.663 回答
0

这是所追求的(已经在堆栈上:P)?Ctrl+Enter jQuery 在 TEXTAREA

$('#textareaId').keydown(function (e) {
e = e || event; // for compatibility with IE (i belive)
  if (e.ctrlKey && e.keyCode == 13) {
    // Ctrl-Enter pressed
  }
});
于 2011-07-12T12:02:19.993 回答
0

适用于 ExtJs 6(示例禁用 Enter 键):

Ext.create('Ext.form.HtmlEditor', {
    width: 580,
    height: 250,
    renderTo: Ext.getBody(),
    listeners:{
       initialize: function(editor){
           const doc = editor.getDoc();
           const docEl = Ext.get(doc);
           docEl.on({
              keypress: (e)=>{
                if (e.event.code === 'Enter'){
                  e.preventDefault();
                }
              },
              delegated:false,
              scope: editor
           });
       }
    }
});
于 2020-12-15T16:24:19.120 回答