Fixed missing top and bottom border for form group header.

This commit is contained in:
Heng Sin Low 2013-01-09 15:25:43 +08:00
parent ebb924a46c
commit 1bcccc6431
2 changed files with 7 additions and 0 deletions

View File

@ -429,6 +429,7 @@ DataStatusListener, IADTabpanel, IdSpace
{
Group rowg = new Group(fieldGroup);
Cell cell = new Cell();
cell.setSclass("z-group-inner");
cell.setColspan(numCols);
rowg.appendChild(cell);

View File

@ -1013,4 +1013,10 @@ tbody.z-grid-empty-body td {
.grid-combobox-editor input {
width: 85% !important;
}
.z-group td.z-group-inner {
overflow: hidden !important;
border-bottom: 1px solid #CFCFCF !important;
border-top: 1px solid #CFCFCF !important;
}