[FIXED] [#811] [3.2.0] TextField.Text presentation after Blur

  1. #1

    [FIXED] [#811] [3.2.0] TextField.Text presentation after Blur

    Hi Support team,

    I have an issue with TextField. After data entry on Blur Text value is going a bit low.
    The issue appears a couple days ago.
    Please see an attachment (it is taken from your examples)

    I am using Chrome Version 43.0.2357.65 m (64-bit)

    Thanks in advance,
    Oleg
    Attached Thumbnails Click image for larger version. 

Name:	TextFieldPresentation.png 
Views:	63 
Size:	41.8 KB 
ID:	23996  
    Last edited by Daniil; Jun 23, 2015 at 10:52 AM. Reason: [FIXED] [#811] [3.2.0]
  2. #2
    Hi

    Thanks for the report, I was able to reproduce it on latest Chrome version
    https://examples3.ext.net/#/Form/FormPanel/Validation/

    Please try the following override as temp fix
    Ext.form.field.Text.override({
                postBlur: function () {
                    var me = this,
                        old;
                    me.callParent(arguments);
    
    
                    if (Ext.isWebKit) {
                        old = me.inputEl.dom.style.display;
                        me.inputEl.dom.style.display = "inline";
    
    
                        setTimeout(function () {
                            me.inputEl.dom.style.display = old;
                        }, 0);
                    }
                }
            });
    We will notify you when it will be fixed in SVN
  3. #3
    Another possible fix
    .x-form-text {
        display: inherit;
    }
  4. #4
    Thank you Vladimir !

    Your work around is working well
    Will be waiting for update.

    Please close the thread
    Oleg
  5. #5
    The issue is not reproducible with the next Chrome 44 beta release. So, it appears to be a Chrome 43 issue.

    I guess we won't apply the fix in SVN. Please use a temporary fix until Chrome 44 is released.
  6. #6
    Chrome 44 is not released still and we are about to release Ext.NET 3.2.0 with ExtJS 5.1.1 incorporated. We don't want this issue goes to the release, so we decided to apply a temporary fix which, I hope, will be removed after Chrome 44 release.

    Fixed in the revision 6430 (SVN trunk). The fix goes to Ext.NET 3.2.0.

Similar Threads

  1. Replies: 7
    Last Post: Nov 19, 2014, 5:45 AM
  2. Lost label value in Blur Event of TextField
    By GolineTidus in forum 2.x Help
    Replies: 4
    Last Post: Dec 04, 2012, 4:11 AM
  3. Replies: 4
    Last Post: Jul 01, 2012, 3:04 AM
  4. TextField DirectEvent Blur Error
    By David Pelaez in forum 1.x Help
    Replies: 5
    Last Post: Dec 21, 2010, 12:32 PM
  5. [CLOSED] validate textfield on blur
    By idrissb in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 29, 2009, 3:47 PM

Posting Permissions