comparison tests/tbody.ur @ 847:0f7e2cca6d9b

<dyn> inside <table>; fix Specialize bug with datatype decls generating other mutually-recursive datatype decls
author Adam Chlipala <adamc@hcoop.net>
date Sat, 13 Jun 2009 14:29:36 -0400
parents
children
comparison
equal deleted inserted replaced
846:0d30e6338c65 847:0f7e2cca6d9b
1 fun main () : transaction page =
2 s <- source [];
3 entry <- source "";
4 return <xml><body>
5 <table>
6 <dyn signal={s <- signal s;
7 return (List.mapX (fn s => <xml><tr><td>{[s]}</td></tr></xml>) s)}/>
8 </table>
9
10 Add one: <ctextbox source={entry}/> <button onclick={e <- get entry;
11 v <- get s;
12 set s (e :: v)}/>
13 </body></xml>