Mercurial > urweb
view demo/crud3.ur @ 2057:f4a6ccb7937f
Allow Body tags inside cformTags
This is required by Bootstrap. For example, see
http://getbootstrap.com/components/#alerts-dismissible
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Sun, 17 Aug 2014 18:28:37 +0000 |
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)