annotate tests/activeFocus.ur @ 1946:f1485ed65d6c

Avoid some spurious error messages about link/form incompatibility; change the text of that error message to include RPC handlers
author Adam Chlipala <adam@chlipala.net>
date Sun, 29 Dec 2013 10:29:26 -0500
parents 56b8efff64e7
children
rev   line source
adam@1790 1 fun main () : transaction page =
adam@1790 2 i <- fresh;
adam@1790 3 return <xml><body>
adam@1790 4 <ctextbox/>
adam@1790 5 <ctextbox id={i}/>
adam@1790 6 <active code={giveFocus i; return <xml>Done</xml>}/>
adam@1790 7 </body></xml>
adam@1790 8
adam@1790 9 fun dynamic () : transaction page =
adam@1790 10 x <- source <xml/>;
adam@1790 11 return <xml><body>
adam@1790 12 <dyn signal={signal x}/>
adam@1790 13 <button onclick={fn _ => i <- fresh; set x <xml>
adam@1790 14 <ctextbox/>
adam@1790 15 <ctextbox id={i}/>
adam@1790 16 <active code={giveFocus i; return <xml>Done</xml>}/>
adam@1790 17 </xml>}/>
adam@1790 18 </body></xml>