forked from extern/egroupware
Implement missing vertical align attribute
This commit is contained in:
parent
90c5646da9
commit
5c0b30bf4f
@ -509,6 +509,10 @@ var et2_grid = et2_DOMWidget.extend([et2_IDetachedDOM], {
|
|||||||
tr.height(this.rowData[y].height);
|
tr.height(this.rowData[y].height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.rowData[y].valign)
|
||||||
|
{
|
||||||
|
tr.attr("valign", this.rowData[y].valign);
|
||||||
|
}
|
||||||
// Create the cells. x is incremented by the colSpan value of the
|
// Create the cells. x is incremented by the colSpan value of the
|
||||||
// cell.
|
// cell.
|
||||||
for (var x = 0; x < w;)
|
for (var x = 0; x < w;)
|
||||||
|
Loading…
Reference in New Issue
Block a user