My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 66: Feature Request: expanding API with view.getElementByName/Id or/and element.getAllChildren
1 person starred this issue and may be notified of changes. Back to list
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;
}



Powered by Google Project Hosting