Alexandr
Alexandr

Reputation: 1460

Ext Js: show childrent element when parent is hidden

I want to show children element as a part of parent element when parent is hide. In practical terms, I need to show div when parent is hide.

Upvotes: 2

Views: 446

Answers (1)

Vu Nguyen
Vu Nguyen

Reputation: 543

Ext-Js is a container, item system. So elements can only have one parent, if you really want to do this you can move the element to another parent that is visible on that action. Your better bet is to hide all items on the parent that you wish not to display, and not actually hide the parent

Upvotes: 4

Related Questions