How to get All the child elements or id of a Panel in Extjs 4?

Thanks, Kunal

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

I wrote that function for you. I think it will help you.

function getAllChilden (panel) {
  /*Get children of passed panel or an empty array if it doesn't have thems.*/
  var children = panel.items ? panel.items.items : [];
  /*For each child get their children and concatenate to result.*/
  Ext.each(children, function (child) {
    children = children.concat(getAllChilden(child));
  })
  return children;
}
It takes panel (container) as a parameter and returns all children and subchildren recursively.

EDIT This will return ids of children. USES PREVIOUS FUNTCION - getAllChilden

function getAllChildenIds (panel) {
  /*Get all child items. */
  var children = getAllChilden(panel);
  /*Replace items with their ids.*/
  for (var i=0, l=children.length; i < l; i++) {
    children[i] = children[i].getId();
  }
  return children;
}

link|improve this answer
Thanks Zango, your code is working fine but i want id of each child element of panel. but facing problem in that. – Kunal Jul 19 '11 at 13:55
Thanks Zango, it works. – Kunal Jul 20 '11 at 5:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.