I have a Table and I want to merge duplicates in the first column:
<Column mergeDuplicates="true">
<Text text="Society"/>
</Column>
<Column>
<Text text="Ref2"/>
</Column>
...
I want to have a complex element in the first column: An icon that shows the flag of society.
<items>
<ColumnListItem>
<cells>
<StandardListItem title="{model>society/description}"
icon="{path: 'model>society/code',
formatter: 'ui5bp.Formatter.iconGeneral'}"/>
<!--<Text text="{model>society/description}"/>-->
<Text text="{model>ref2}"/>
</cells>
</ColumnListItem>
</items>
But if I set the StandardListItem instead the simple text the mergeDuplicates="true" does not work.
Are complex column items and the mergeDuplicates property incompatible?
Now StandardListItem has this result:

How can I create a correct "MyCustomColumnListItem" to show the flag on the left and descriprion on the right without space up and down?
StandardListIteminside acellsaggregation is not correct; as you see, the rendering of it looks a bit weird too... Can't you jsut use anIconorImagecontrol instead? Or maybe a custom control, specific to your needs, and set the appropriatemergeFunctionNamevalue accordingly - Qualiture