Mark with bold the special rows (capacity, total and extra) in the monthly timesheet
FEA: ItEr76S28UserDashboard
This commit is contained in:
parent
c24897ae59
commit
e2eaf34bbb
1 changed files with 4 additions and 2 deletions
|
|
@ -204,10 +204,12 @@ public class MonthlyTimesheetController extends GenericForwardComposer
|
|||
appendTotalColumn(row);
|
||||
}
|
||||
|
||||
private void appendLabelSpaningTwoColumns(Row row, String label) {
|
||||
private void appendLabelSpaningTwoColumns(Row row, String text) {
|
||||
Cell cell = new Cell();
|
||||
cell.setColspan(2);
|
||||
cell.appendChild(new Label(label));
|
||||
Label label = new Label(text);
|
||||
label.setStyle("font-weight: bold;");
|
||||
cell.appendChild(label);
|
||||
row.appendChild(cell);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue