0
我有一個CellTable
與Columns
。其中一列將文本右對齊編程式:如何將渲染的單元格行對齊到右側?
column.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_RIGHT);
此外,我希望單元格在右側有一個填充。由於不能得到它的工作。這是我試過的:
column.setCellStyleNames("numberCell");
.numberCell {
padding-right: 5px !important;
margin-right: 5px !important;
color: red !important;
}
單元格中的文本呈現爲紅色,但沒有填充。