排序图标需要在DataGrid中右对齐

时间:2013-03-04 04:54:38

标签: gwt

我在Datagrid中使用排序。排序图标显示在左对齐默认值上。我需要在右边显示它。如何将其设置为右对齐?请参见下图“无”栏目。

enter image description here

1 个答案:

答案 0 :(得分:1)

显示左对齐的排序图标,应用于样式下方。它有效。

.cellTableStyle th > div:first-child {
    margin-right: 15px;
}
.cellTableStyle th div div:first-child {
    left: 50%;
    margin-left: 100%;
}