Hi Isomorphic,
Can you take a look at this?
With exactly the same code, I have different behaviors in different versions.
Using "v12.0p_2018-08-23/PowerEdition Deployment (built 2018-08-23)" looks like this:
The font seems to be changing and becoming bold.
Using "v11.1p_2018-08-29/PowerEdition Deployment (built 2018-08-29)" looks like this:
The position changes, but that's okay in my opinion.
These are the properties of my ListGrid:
Best regards
Pavo
Can you take a look at this?
With exactly the same code, I have different behaviors in different versions.
Using "v12.0p_2018-08-23/PowerEdition Deployment (built 2018-08-23)" looks like this:
The font seems to be changing and becoming bold.
Using "v11.1p_2018-08-29/PowerEdition Deployment (built 2018-08-29)" looks like this:
The position changes, but that's okay in my opinion.
These are the properties of my ListGrid:
Code:
setSelectionType(SelectionStyle.SINGLE); setVirtualScrolling(true); setShowRecordComponents(true); setShowRecordComponentsByCell(true); setRecordComponentPoolingMode(RecordComponentPoolingMode.RECYCLE); setPoolComponentsPerColumn(true); setFixedRecordHeights(true); setRecordComponentHeight(56); setCanSort(false); setCanPickFields(false); setCanResizeFields(false); setCanAutoFitFields(false); setCanGroupBy(false); setAutoFetchData(false); setCanGroupBy(false); // public Canvas createRecordComponent(final ListGridRecord record, Integer colNum) { // public Canvas updateRecordComponent(final ListGridRecord record, Integer colNum, Canvas component, boolean recordChanged) {
Best regards
Pavo
Comment