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.
私の目的はmenuitem、次の形式にすることです。
menuitem
------------------------- window1 [ _ ] [ □ ] [ x ] -------------------------
したがって、問題は次のとおりです。ツール(ウィンドウの右上隅に通常あるものと同様)または標準のボタンをメニュー項目に配置できますか?
Ext 4.2の使用:
Ext.require('*'); Ext.onReady(function() { new Ext.menu.Menu({ items: { border: false, xtype: 'panel', title: 'Foo', shrinkWrapDock: true, tools: [{ type: 'close' }] } }).show(); });