[CLOSED] [#244] Grid cell editing, and combobox "blur" event NOT fired when expected upon "tab" key

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] [#244] Grid cell editing, and combobox "blur" event NOT fired when expected upon "tab" key

    Last edited by Baidaly; May 31, 2013 at 3:05 AM. Reason: [CLOSED] [#244]
  2. #2
    Hi @adrianot,

    An alert box can break such events. Please try to replace "alert(message);" with "console.log(message);".

    Does it behave the same?
  3. #3
    Hi Daniil,
    yes I tried both but still it doesn't fire the blur event with the "tab" key.
  4. #4
    I think it is a bug and reported to Sencha.
    http://www.sencha.com/forum/showthread.php?264043

    Please try this fix.

    Fix
    Ext.form.field.ComboBox.override({
        onEditorTab: function(e){
            var keyNav = this.listKeyNav;
    
            if (this.selectOnTab && keyNav) {
                keyNav.selectHighlighted(e);
            }
    
            this.triggerBlur(); // added
        }    
    });
  5. #5
    Hello!

    Sencha says this issue has been fixed. We will retest it when apply ExtJS 4.2.1 to the trunk.

    We have created an issue to track this defect: https://github.com/extnet/Ext.NET/issues/244
  6. #6
    Thank you guys for both the workaround and the fix update! You're providing a great support! Keep up the great work.
    Adriano

Similar Threads

  1. Replies: 1
    Last Post: Jun 26, 2012, 11:29 AM
  2. Replies: 5
    Last Post: May 02, 2012, 5:37 PM
  3. Replies: 2
    Last Post: Jan 09, 2012, 10:51 PM
  4. Replies: 4
    Last Post: Oct 11, 2011, 2:42 AM
  5. Replies: 2
    Last Post: Jun 26, 2011, 1:59 AM

Posting Permissions