Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I am using Extjs 4 and I need to combine between card and border layout on one panel. card to create a wizard and border to create a child panel.
You don't need to combine layouts - you nest them. Basically you would create something like this:
combine
nest
{ xtype: 'panel', layout: 'card', items: [{ xtype: 'panel', layout: 'border' }, { xtype: 'panel', layout: whatever... }] }