Posted 24 September 2020, 4:19 am EST
Hi,
I’m using an engrided wj-input-date-time as this :
<wj-flex-grid-column binding="myData" [dataType]="4" [format]="'dd/MM/yyyy hh:mm'">
<ng-template wjFlexGridCellTemplate [cellType]="'CellEdit'" let-let-cell="cell">
<wj-input-date-time [(value)]="cell.value" [max]="item.datumVervoer" [format]="'dd/MM/yyyy hh:mm'"></wj-input-date-time>
</ng-template>
</wj-flex-grid-column>
It’s working fine using the date/time pickers.
However, when entering the values manually, the data is not getting updated (it just roll back to the original value).
→ Only removing the format from the wj-input-date-time will make it work properly.
How can I solve this ?
Thanks you in advance.