Mercurial > urweb
view tests/select.ur @ 2150:763ccca119bc
location literal _LOC_
author | Gabriel Riba Faura <griba2001@gmail.com> |
---|---|
date | Wed, 03 Jun 2015 08:34:23 +0200 |
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>