When setting
grid = new Listgrid()
grid.setLayoutAlign(Alignment.LEFT);
The alignment is depending on the DataSourceField type.
integer and Datetime for example are right aligned,
but text is left aligned.
Is this known and on purpose?
If this is on purpose, I will just iterate over all ListGridFields and call .setAlignment(Alignment.LEFT);
grid = new Listgrid()
grid.setLayoutAlign(Alignment.LEFT);
The alignment is depending on the DataSourceField type.
integer and Datetime for example are right aligned,
but text is left aligned.
Is this known and on purpose?
If this is on purpose, I will just iterate over all ListGridFields and call .setAlignment(Alignment.LEFT);
Comment