Monday, November 22, 2010

ExtJS

Extjs was extended from originally the open source version of YUI.
I find that, due to lack of easy google search on documentation / tutorial on extjs (or maybe because im not good at looking for extjs keywords), i find it quite difficult to pick it up.

I've found an example for jQuery lover:
jQuery examples:
jQuery("#my_field_id") or $("#my_field_id")

ExtJS:
Ext.get("my_field_id"); // return single element with id
Ext.select("#my_field_id div span a");// return array, alike jQuery selector

I've found a good basic tutorial here:

No comments: