Mercurial > urweb
view tests/dynList.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 | 2b2d07946e65 |
children |
line wrap: on
line source
fun main () = b <- source True; let fun textboxList xs = <xml> <table> {List.mapX (fn src => <xml><tr> <td dynClass={return null} dynStyle={b <- signal b; if b then return (STYLE "width: 500px") else return (STYLE "width: 100px")}> <ctextbox source={src}/> </td></tr></xml>) xs} </table> </xml> in s <- source "foo"; return <xml><body> <ccheckbox source={b}/> {textboxList (s :: s :: [])} </body></xml> end