In the keyevents if the key pressed is not between a to z we just ignore it
and keep the value of the curKey. I think we should change it to undefined
meaning:
This line:
if (((curKey>='a')&&(curKey<='z'))||((curKey>='0')&&(curKey<='9')))
this.charKey=curKey;
Should be replaced with
if (((curKey>='a')&&(curKey<='z'))||((curKey>='0')&&(curKey<='9')))
this.charKey=curKey;
else
this.charKey=null;
8an
_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev