-
panel border
Hi,
how can i disable this border, please look at the screenshot:
http://img14.imageshack.us/img14/5479/panelu.jpg
here the code:
PHP Code:
this.counter = new Ext.Panel({
columnWidth: .50,
hidden: true,
border: false,
bodyCfg: {
tag: 'center',
cls: 'x-panel-body'
},
layout:'fit',
html: '<img src="img/icons/strichel.jpg"> <b>' + c + '</b>'
});
pleae help me.
thx
-
Don't use a Panel! Panels have borders, headers, footers, buttons, tools, and gawd knows what else!
Just use an Ext.Container with autoEl: 'div' as described in the API docs.
-
To remove child element border we can add
border:false,
defaults: {
border:false
}