Mercurial > urweb
view tests/focus.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 | ffd7ed3bc0b7 |
children |
line wrap: on
line source
fun main () : transaction page = id1 <- fresh; id2 <- fresh; s1 <- source ""; s2 <- source ""; which <- source False; return <xml><body> <ctextbox id={id1} source={s1}/> <ctextbox id={id2} source={s2}/> <button onclick={fn _ => w <- get which; set which (not w); giveFocus (if w then id1 else id2)}/> </body></xml>