How to implement correctly the IME module?
Troubleshooting common problems with IME module
IME input box can handle at most 256 characters. When this limit is exceeded, the input box may show some garbage values or the application may get crashed.
Because of that, it is recommended to allow no more than 256 characters inside an input box. If this limit is not applied, the testing team will report it as a certification defect.
To implement the character limit, there can be used the maxlength property of an input tag. Below, there is some sample code of how to use it:
<form id="plain" class="window" onSubmit="return false;">
<p>Text box with maximum of 256 characters</p>
<input id="plainText" type="text" size="10" maxlength="256" height="30" />
</form>
See also
- Application reload while using IME
- How to avoid reloading the application while using the IME module.