29 octubre 2011
24 octubre 2011
20 octubre 2011
#{ Flex: Renderers }
Complicados, fáciles una vez se entienden y muy útiles...
http://www.axelscript.com/2008/02/29/using-the-itemrenderer-with-a-datagrid-in-flex/
http://blogagic.com/140/changing-flex-itemrenderer-at-runtime
http://www.adobe.com/devnet/flex/articles/itemrenderers_pt2.html
18 octubre 2011
#{ Código: Abreviando el tradicional If - else }
If-else de la manera tradicional:
if (a > b) { max = a; } else { max = b; }If-else abreviado:
max = (a > b) ? a : b;*operador condicional ternario
07 octubre 2011
Suscribirse a:
Entradas
(Atom)