Mercurial > urweb
view demo/crud3.ur @ 1990:7bd2ecf96bb0
Fixed issue with datatype constructors inside functors; now on to some problem with modules inside functors
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 20 Feb 2014 10:48:17 -0500 |
parents | c7b9a33c26c8 |
children |
line wrap: on
line source
table t : {Id : int, Text : string} PRIMARY KEY Id open Crud.Make(struct val tab = t val title = "Crud3" val cols = {Text = {Nam = "Text", Show = txt, Widget = (fn [nm :: Name] => <xml> <subform{nm}> <textbox{#A}/> <textbox{#B}/> </subform> </xml>), WidgetPopulated = (fn [nm :: Name] s => <xml> <subform{nm}> <textbox{#A} value={s}/> <textbox{#B}/> </subform> </xml>), Parse = (fn p : {A : string, B : string} => p.A ^ p.B), Inject = _ } } end)