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.
布局:窗口-->选项卡面板-->表单面板。如果我想提交formpanel,但是有很多formpanel,我不知道怎么办!是布局问题吗?我是java程序员。我使用struts2+extjs ......
不要使用多个表单面板。
采用:
new Ext.Window({ layout: 'fit', items: { xtype: 'form', layout: 'fit', items: { xtype: 'tabpanel', items: { title: 'Tab 1', layout: 'form' } } } });
之后,您只需提交一个主表单。