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.
我正在使用 Extjs 4,我需要在一个面板上结合卡片和边框布局。卡片创建向导,边框创建子面板。
你不需要combine布局 - 你nest他们。基本上你会创建这样的东西:
combine
nest
{ xtype: 'panel', layout: 'card', items: [{ xtype: 'panel', layout: 'border' }, { xtype: 'panel', layout: whatever... }] }