If want to my nubmerfield take "," and covert it to "." on key up. Numberfield doesn't allow to input "," in it. And I want to handle "specialkey" and add "." manually. But "," isn't special key. How to add it there?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If you want to convert ',' into '.' on key up, why do you want to handle it with 'specialkey' event? Why don't you use 'keyup' event? Here's an example:
Otherwise you can use disableKeyFilter property to allow the user to insert special chars, like ,.&*% etc. and then find a way out to replace ',' with '.' By the way, if you want to handle ',' with specialkey event, here's a trick:
|
|||
|
|