| ID | CS000943 | Creation date | May 2, 2008 |
| Platform | S60 3rd Edition, FP2 | Tested on devices | |
| Category | S60 Web Runtime | Subcategory |
| Keywords (APIs, classes, methods, functions): |
This example Javascript code is intended for re-use and incorporation into larger projects.
NumericKeyTranslator is a key map engine, written in JavaScript language and designed for the S60 Web Runtime platform. The library can be used mainly in Web widgets for S60 to overcome the problem of key event being absorbed by the widget engine while a text edit field is in editing mode. Thus, a widget cannot instantly receive a key event to detect which character has just been entered into the edit field. One of the use cases is implementing an instant searching function where input characters must be retrieved immediately after the user types them into the search field (a text input field).
To use the NumericKeyTranslator with a text edit field, that is, <input type="text" />, the input element must be set to read-only to prevent the user from setting it to the editing mode. <input type="text" readonly="true"/>
NumericKeyTranslator can be used with any element that can reasonably display characters on it, for example aNo related wiki articles found