Mercurial > urweb
view demo/view.ur @ 2062:795b5b75453c
Add 'role' data attribute.
Note, that 'role' attribute is a part of reach ARIA API described here:
http://www.w3.org/TR/wai-aria/
Among 'role', it defines lots of aria-* attributes
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Mon, 07 Jul 2014 10:05:04 +0400 |
parents | c7b9a33c26c8 |
children |
line wrap: on
line source
table t : { A : int } view v = SELECT t.A AS A FROM t WHERE t.A > 7 fun list [u] (_ : fieldsOf u [A = int]) (title : string) (x : u) : transaction xbody = xml <- queryX (SELECT * FROM x) (fn r : {X : {A : int}} => <xml><li>{[r.X.A]}</li></xml>); return <xml> <h2>{[title]}</h2> <ul>{xml}</ul> </xml> fun main () = listT <- list "T" t; listV <- list "V" v; return <xml><body> {listT} {listV} <br/> <form>Insert: <textbox{#A}/> <submit action={ins}/></form> </body></xml> and ins r = dml (INSERT INTO t (A) VALUES ({[readError r.A]})); main ()