这种方式不起作用:
this.items = [
{
height: 35,
layout: 'hbox',
border: '0 0 3 0',
items: [.....
有人知道如何仅显示边界的底线吗?
答案 0 :(得分:1)
也许你可以这样设置:
border: false,
componentCls: 'bottom-border',
和css
.bottom-border {
border-bottom: 1px solid #99BBE8;
}