Hi Im very sorry to post this basic question, but Im spending lot of time to fix this..
please help me
Im creating panel inside panel with elements its giving border for each element..please help me...I tried border, bodyBorder, frame ....no clue..
var info = new Ext.Panel({
// bodyStyle: 'padding:0px 0px 10px 0px',
border:false,
//frame:false,
items:[{
},{
}]
});
Ext.onReady(function(){
var p = new Ext.Panel({
title: 'My Panel',
collapsible:true,
renderTo: 'container',
autoWidth:true,
autoHeight:true,
items:[info]
});
});