Issue 66: Feature Request: expanding API with view.getElementByName/Id or/and element.getAllChildren
Status:  New
Owner: ----
Reported by fat.bold.cyclop@gmail.com, Dec 29, 2008
The first should find a child of a view (not only direct one) by it's name.

The second should return all children of element including not direct ones 
(grandchildren etc.).

Especially the first one would be helpful.
Nov 11, 2009
#2 taka2...@gmail.com
You can implement view.getElementByName() look like this:

view.getElementByName = function( strName ) {
  var element = eval( strName );
  return element;
}