[CLOSED] How to Exclude the keyup event from the TextField checkChangeEvents.

  1. #1

    [CLOSED] How to Exclude the keyup event from the TextField checkChangeEvents.

    Hi,

    In Ext.Net 2.5 we are facing issue with TextField change event. Actually change event should be fire after changing whole value, but with latest version while entering the key itself the Change event is firing, because of this we are facing problems in calculation part.

    What is the way/fix for this issue?. TextField change event should be fire completion of entering the value only. In my case Blur event is sufficient why because we have other logic if value is changed on textfield, this logic will be failed on Blur event.

    Please provide solution as early as possible.

    Thank you.
    Last edited by Daniil; Sep 05, 2014 at 8:10 AM. Reason: [CLOSED]
  2. #2
    Hi iansriley

    may be I have similar issue . please see

    http://forums.ext.net/showthread.php...een-tow-fields
  3. #3
    Hi @iansriley,

    Here you can look at the default value of the CheckChangeEvents config option.
    http://docs.sencha.com/extjs/4.2.1/#...ckChangeEvents

    You can override it globally like that. Put this script into the page's <head>.
    if (Ext.isIE){
        Ext.form.field.Text.prototype.checkChangeEvents = ['change', 'propertychange' ];
    } else {
        Ext.form.field.Text.prototype.checkChangeEvents = ['change', 'dragdrop'];
    }

Similar Threads

  1. [CLOSED] why keyup event not be triggered?
    By tobros in forum 2.x Legacy Premium Help
    Replies: 15
    Last Post: Aug 02, 2013, 8:43 AM
  2. Dynamic TextField KeyUP Event
    By archana in forum 1.x Help
    Replies: 0
    Last Post: Oct 21, 2011, 6:23 AM
  3. Replies: 2
    Last Post: Nov 01, 2010, 5:29 PM
  4. Textfield Keyup Listener Not Working
    By Tbaseflug in forum 1.x Help
    Replies: 1
    Last Post: Sep 25, 2009, 2:10 AM
  5. Keyup event of Text Field.
    By VietView in forum 1.x Help
    Replies: 3
    Last Post: Mar 02, 2009, 6:32 AM

Tags for this Thread

Posting Permissions