Mercurial > urweb
view tests/select.ur @ 1481:3061d1bf4b2d
recToList
author | Robin Green <greenrd@greenrd.org> |
---|---|
date | Mon, 27 Jun 2011 21:36:32 +0100 |
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>