Is there a way to get rid of the title bar in a Ext.window.Window? (the bar on top of the window that has the close box)
If not, is there a way to add a combo box to it?
Printable View
Is there a way to get rid of the title bar in a Ext.window.Window? (the bar on top of the window that has the close box)
If not, is there a way to add a combo box to it?
Adding
preventHeader : true,
works.
Hope this helps someone else
And if you are wanting to add anything to the title bar you can. The Window should have a header property (like all Panels) and the header is just a Container using HBoxLayout (or VBoxLayout) so you can add/insert any component very easily! Do remember that the header isn't created at initComponent, you will need to after render.
cool! thanks