Posted 25 April 2018, 4:20 am EST
Hello,
we encountered the problem that word wrap does not work with normal binding. If we do the binding like this:
<wj-flex-grid-column header="Name" binding="name" [width]="200" wordWrap="true">
</wj-flex-grid-column>
It only works when we do it with a cell template like this:
<wj-flex-grid-column header="Name" [width]="200" wordWrap="true">
<ng-template wjFlexGridCellTemplate cellType="Cell" let-cell="cell">
{{ cell.item.name }}
</ng-template>
</wj-flex-grid-column>
we have a lot of cases, where we just have a binding without a template. We don’t want to change them all to a cell template just to get word wrap working.