annotate tests/keyEvent.ur @ 1802:e3ec868567ce
Undo change to script evaluation, originally made to support <active> + 'giveFocus'; alternate approach to making 'giveFocus' work in dynamic code generatione
author |
Adam Chlipala <adam@chlipala.net> |
date |
Fri, 03 Aug 2012 08:38:47 -0400 |
parents |
5bc4fbf9c0fe |
children |
|
rev |
line source |
adam@1783
|
1 fun main () : transaction page = return <xml><body>
|
adam@1783
|
2 <ctextbox onkeypress={fn ev => alert ("KeyCode = " ^ show ev.KeyCode
|
adam@1783
|
3 ^ "\nCtrlKey = " ^ show ev.CtrlKey
|
adam@1783
|
4 ^ "\nShiftKey = " ^ show ev.ShiftKey
|
adam@1783
|
5 ^ "\nAltKey = " ^ show ev.AltKey
|
adam@1783
|
6 ^ "\nMetaKey = " ^ show ev.MetaKey)}/>
|
adam@1783
|
7 </body></xml>
|