-
7 May 2009 3:10 AM #1
panel border
panel border
Hi,
how can i disable this border, please look at the screenshot:

here the code:
pleae help me.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>'
});
thx
-
7 May 2009 3:17 AM #2
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.Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
3 Oct 2012 3:41 AM #3
To remove child element border we can add
border:false,
defaults: {
border:false
}


Reply With Quote