Fixed missing top and bottom border for form group header.
This commit is contained in:
parent
ebb924a46c
commit
1bcccc6431
|
@ -429,6 +429,7 @@ DataStatusListener, IADTabpanel, IdSpace
|
||||||
{
|
{
|
||||||
Group rowg = new Group(fieldGroup);
|
Group rowg = new Group(fieldGroup);
|
||||||
Cell cell = new Cell();
|
Cell cell = new Cell();
|
||||||
|
cell.setSclass("z-group-inner");
|
||||||
cell.setColspan(numCols);
|
cell.setColspan(numCols);
|
||||||
rowg.appendChild(cell);
|
rowg.appendChild(cell);
|
||||||
|
|
||||||
|
|
|
@ -1014,3 +1014,9 @@ tbody.z-grid-empty-body td {
|
||||||
.grid-combobox-editor input {
|
.grid-combobox-editor input {
|
||||||
width: 85% !important;
|
width: 85% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.z-group td.z-group-inner {
|
||||||
|
overflow: hidden !important;
|
||||||
|
border-bottom: 1px solid #CFCFCF !important;
|
||||||
|
border-top: 1px solid #CFCFCF !important;
|
||||||
|
}
|
Loading…
Reference in New Issue