view tests/subform.ur @ 2291:50ad02829abd

Make cache flushes happen immediately instead of at end of transaction.
author Ziv Scully <ziv@mit.edu>
date Tue, 17 Nov 2015 02:44:37 -0500
parents 8ce31c052dce
children
line wrap: on
line source
fun handler r = return <xml><body>
  {[r.A]}, {[r.Sub.A]}, {[r.Sub.B]}, {[r.Sub.Sub]}, {[r.C]}
</body></xml>

fun main () = return <xml><body>
  <form>
    <textbox{#A}/><br/>
    <subform{#Sub}>
      <textbox{#A}/><br/>
      <textbox{#B}/><br/>
      <textbox{#Sub}/><br/>
    </subform>
    <textbox{#C}/><br/>
    <submit action={handler}/>
  </form>
</body></xml>