0

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.

4

1 に答える 1

1

You don't need to combine layouts - you nest them. Basically you would create something like this:

{
  xtype: 'panel',
  layout: 'card',
  items: [{  
    xtype: 'panel',
    layout: 'border'
  }, {
    xtype: 'panel',
    layout: whatever... 
  }]
}
于 2012-07-28T13:19:39.500 に答える