Mercurial > urweb
view tests/activeFocus.ur @ 1881:a5b08bdfa450
New header file scheme to support FFI code in either of C or C++ [based on suggestion by Ron de Bruijn]
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Fri, 11 Oct 2013 17:15:28 -0400 |
parents | 56b8efff64e7 |
children |
line wrap: on
line source
fun main () : transaction page = i <- fresh; return <xml><body> <ctextbox/> <ctextbox id={i}/> <active code={giveFocus i; return <xml>Done</xml>}/> </body></xml> fun dynamic () : transaction page = x <- source <xml/>; return <xml><body> <dyn signal={signal x}/> <button onclick={fn _ => i <- fresh; set x <xml> <ctextbox/> <ctextbox id={i}/> <active code={giveFocus i; return <xml>Done</xml>}/> </xml>}/> </body></xml>