extjs frame=true 去边框处理
1 layout : {type:'table',columns :2},
2 frame : true,
3 defaults:{ labelAlign:'right'},
4 border:false,
5 style:"border-color:#000000;border-style:solid;border-width:1px",
6 style: {borderColor:'#000000', borderStyle:'solid', borderWidth:'1px'},
2 frame : true,
3 defaults:{ labelAlign:'right'},
4 border:false,
5 style:"border-color:#000000;border-style:solid;border-width:1px",
6 style: {borderColor:'#000000', borderStyle:'solid', borderWidth:'1px'},
frame:true //蓝色背景圆角边框
border:false//去除边框导致无效
解决方法:style去边框。
注意:style参数是object的时候:由于object不能有-所以extjs中去除-大写处理 。
另外解决方法:覆盖css
.x-panel-default-framed {
border-color: #dfe9f6;
padding: 4px;
}