Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
95
UltraTextEditor TextChanged Event
posted

HI all

       When i use UltraTextEditor TextChanged Event, There is a little problem. i just input a char,the event will  fire.Such as i want to input  'China' ,when i input the 'C', the event will  fire.But i want that after i input the whole word. I use the 'leave' event instead, but no matter the word is changed or not ,the event will fire. Is anyother event suitable for my case.!

 

Thanks

  • 469350
    Suggested Answer
    Offline posted

    There's no event that will only fire when the data has changed. Perhaps what you should do is use the Enter event on the control to record the original value. Then in the Validating event, you can check if the value has changed and if so, validate the next value.