We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The cell renderer doesn't support alignments.
User: features Test screen: CellProfile (LAST_NAME column)
The alignment isn't recognized at all.
The text was updated successfully, but these errors were encountered:
this should already be fixed now by 99ccfb1 -> last name is right aligned
Sorry, something went wrong.
the LAST_NAME is now right, but alignment doesn't work in general because:
If you set the alignment for the DOB column (CellProfileWorkScreen in Eclipse):
search for: mdbData.getRowDefinition().getColumnDefinition("LAST_NAME").getDataType().setCellEditor(tcedRight);
and add:
mdbData.getRowDefinition().getColumnDefinition("DOB").getDataType().setCellEditor(new UINumberCellEditor(IAlignmentConstants.ALIGN_RIGHT));
Alignment of DOB column works, but not formatted:
and if you set the alignment for a linked cell editor:
UIEnumCellEditor eced = new UIEnumCellEditor(new Object[] {"A", "B", "C"}); eced.setHorizontalAlignment(IAlignmentConstants.ALIGN_RIGHT);
the text is still left aligned.
Alignment should work for text, number, date, linked, image renderers.
gimmixAT
No branches or pull requests
The cell renderer doesn't support alignments.
User: features
Test screen: CellProfile (LAST_NAME column)
The alignment isn't recognized at all.
The text was updated successfully, but these errors were encountered: