Posted 21 April 2021, 12:07 pm EST
Hello , I’m trying to get this text area embedded inside flexgrid cell. I’m unable to view/edit the comment. Am i missing something here ? Below is the code i have.
<wj-flex-grid-column header="Comments" [minWidth]="250" binding="comments" width="2*" word-wrap="true">
<ng-template wjFlexGridCellTemplate [cellType]="'Cell'" let-cell="cell">
<div class="divwordwrap" style="word-break:break-word;" >
{{cell.comment}}
</div>
</ng-template>
<ng-template wjFlexGridCellTemplate [cellType]="'CellEdit'" let-cell="cell">
<div class="tadiv">
<textarea class="tadiv" ng-model="cell.value"> </textarea>
</div>
</ng-template>
</wj-flex-grid-column>