view tests/select.ur @ 2167:a9dc205edd78

Add '-noEmacs' for 'make test'
author Adam Chlipala <adam@chlipala.net>
date Thu, 06 Aug 2015 12:51:09 -0400
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>