05-19-2011 11:56 AM
01-09-2012 09:18 AM
04-11-2012 02:43 PM - edited 04-12-2012 07:39 AM
Same problem here: Backspace key does not trigger onKeyUp event in WebWorks for PlayBook OS 2.0.
Edit: Actually, sometimes it does and sometimes it doesn't.
04-12-2012 03:21 PM - edited 04-12-2012 03:22 PM
in my Now Serving App my code is as follows : onkeypress="{if (event.keyCode==13) callFunction(this.form)}"
keycode 13 is enter... maybe you should try that?
04-12-2012 03:34 PM
Intercept an additional event only for the Del key as backup... Good idea, I'll give it a try.
04-12-2012 09:47 PM - edited 04-12-2012 09:48 PM
Nope, still behaving randomly. The text is deleted when I press BACKSPACE but for some reason the events are not triggered.
05-29-2012 06:02 PM
I am running into this problem as well. Has anyone come up with a solution?
Thanks,
06-05-2012 05:12 PM
I'm using jQuery on PlayBook. Any workarounds for this?
06-05-2012 05:57 PM
Here is a description of the symptoms I am seeing:
* When I type in the <textarea>, the .keyup event triggers correctly for all letters pressed. This includes the space bar.
* When I press the Backspace key, the .keyup event does not trigger. I tried to trap the .keyup event using $(document).keyup but that didn't catch the Backspace key either.
* If the <textarea> is empty and I press the Backspace key once more, the .keyup event triggers.
* When I trace using Web Inspector, the Event Listener Breakpoint for Keyboard.keyup does trigger when I press the Backspace key, but it is not captured by either $(document).keyup for the <textarea>.keyup.
Any help would be appreciated.
Thanks,