Arno, it's possible to adjust the alignment of a table cell with the css class: .tundra .mendixDataGrid_tableData.
Problem is that this will be done for all column in every datagrid.
But it's possible to set a css class for a specific datagrid. When you do this, you could use something like this:
.yourspecificdatagrid .tundra .mendixDataGrid_tableData {
text-align:right;
}
But this will be done for all columns for that particular datagrid. The only way to do it individual for every specific column, you need to set a css class for that particular column. AFAIK this isn't possible in the default data grid in Mendix 3.3.2.
Thanks Samet!