| 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 |
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. |
You can implement view.getElementByName() look like this: view.getElementByName = function( strName ) { var element = eval( strName ); return element; }