annotate demo/more/select.ur @ 1023:e46227efcbba

Bidding interface
author Adam Chlipala <adamc@hcoop.net>
date Sun, 01 Nov 2009 10:20:20 -0500
parents
children
rev   line source
adamc@1023 1 fun selectChar choices current =
adamc@1023 2 List.mapX (fn (ch, label) =>
adamc@1023 3 <xml><option value={String.str ch} selected={current = Some ch}>{[label]}</option></xml>) choices