admin管理员组

文章数量:1356438

I am using an Ext.window.Window and i don't wanna the frame in my window.

The window has the property 'frameHeader' (true or false) but i change this and my window doesn't change anything..

What i can do to remove the window header ?

I am using an Ext.window.Window and i don't wanna the frame in my window.

The window has the property 'frameHeader' (true or false) but i change this and my window doesn't change anything..

What i can do to remove the window header ?

Share Improve this question asked Mar 26, 2012 at 11:09 Vítor NóbregaVítor Nóbrega 1,2134 gold badges26 silver badges53 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

Use property header instead, like:

header: false

It will remove the header

There are couple options:

title: '',
frame: false,

If that's not something that you want - please provide a sketch of what result are you trying to achieve.

I think your looking for the preventHeader option. http://docs.sencha./ext-js/4-0/#!/api/Ext.window.Window-cfg-preventHeader

preventHeader: true

This will pletely disable the header though and will remove the ability to move/close the window.

本文标签: javascriptHow to remove frame header from a Window in ExtJSStack Overflow