Data entry into a text box control can suffer from keyboard entry ‘lag behind’ which can result from having to process too many key event methods on the form and text box and from the increasing size of the text value.
As the text is changed, that text is transmitted so that it is available for any logic reference.
If there are no form or text box key event methods, the text is transmitted only when some other event occurred (for example, the
Use the
In addition to the
Class | Method | Description |
---|---|---|
Window |
|
Enables you to control at run time whether JADE logic associated with an event for a specific form or control is executed. You could use this method in thin client mode, for example, to speed up the data entry process for a text box control by disabling the |
Form |
|
Populates an array of the form keys that are in effect for the form. This array contains entries only if the Form::registerFormKeys method has been called. |
Window |
|
Specifies whether an event is currently enabled for the window. |
Form |
|
Establishes the entire set of key codes in which key events of the receiver form are interested. After calling the |
For details, see