Mercurial > urweb
view tests/select.ur @ 1984:819756825c8d
Merge in upstream
author | Patrick Hurst <phurst@mit.edu> |
---|---|
date | Fri, 14 Feb 2014 04:00:03 -0500 |
parents | fe018cbdd41e |
children |
line wrap: on
line source
val handler = fn x => <xml><body> You entered: {cdata x.A} </body></xml> val main = fn () => <xml><body> <form> <select{#A}> <option value="A">A</option> <option value="B">B</option> </select> <submit action={handler}/> </form> </body></xml>