Posted 7 December 2021, 3:57 am EST - Updated 4 October 2022, 7:42 am EST
Hi,
Is there a way to merge the columns vertically on a Multirow grid that is using cell template?
<wj-multi-row-cell-group [allowMerging]="true">
<wj-multi-row-cell binding="test"
[allowMerging]="true"
[header]="'Test'"
[minWidth]="150"
>
<ng-template wjMultiRowCellTemplate [cellType]="'Cell'" let-item="item">
<div class="date-input-cont actions temp-fix">
<wj-input-date format="yyyy/MM/dd"></wj-input-date>
</div>
</ng-template>
</wj-multi-row-cell>
<wj-multi-row-cell binding="test"
[allowMerging]="true"
[header]="'Test'"
[minWidth]="150"
>
<ng-template wjMultiRowCellTemplate [cellType]="'Cell'" let-item="item">
<div class="date-input-cont actions temp-fix">
<wj-input-date format="yyyy/MM/dd"></wj-input-date>
</div>
</ng-template>
</wj-multi-row-cell>
<wj-multi-row-cell binding="test"
[allowMerging]="true"
[header]="'Test'"
[minWidth]="150"
>
<ng-template wjMultiRowCellTemplate [cellType]="'Cell'" let-item="item">
<div class="date-input-cont actions temp-fix">
<wj-input-date format="yyyy/MM/dd"></wj-input-date>
</div>
</ng-template>
</wj-multi-row-cell>
</wj-multi-row-cell-group>