Reputation: 97
This way is not working:
this.items = [
{
height: 35,
layout: 'hbox',
border: '0 0 3 0',
items: [.....
Does anybody know how to show only bottom line of the border?
Upvotes: 1
Views: 58
Reputation: 3652
maybe you can set it like this :
border: false,
componentCls: 'bottom-border',
and css
.bottom-border {
border-bottom: 1px solid #99BBE8;
}
Upvotes: 1