<ejs-grid #specificationQueueGrid id="reviewSpecificationListGrid" gridLines="Both" [dataSource]="data" [allowFiltering]="true"
[allowSorting]="true" [allowMultiSorting]="true" [allowPaging]="true" allowTextWrap="true" (rowDataBound)="rowDataBound($event)"
[pageSettings]="pageSettings" [sortSettings]="sortSettings" (dataBound)="dataBound()" (queryCellInfo)='customiseCell($event)' [editSettings]="editSettings" (actionComplete)='actionComplete($event)'>
<ng-template #detailTemplate let-data>
<cpi-queue [OrderNumber]="data.orderNumber" [OrderStatus]="data.status"></cpi-queue>
</ng-template>
<e-columns>
<e-column field="orderNumber" headerText="Order #" width="15" textAlign='Center' [allowEditing]='false' isPrimaryKey='true'>
<ng-template #template let-data>
<a (click)="onClickOrderNumber(data.orderNumber)" rel='nofollow' href="javascript:void(0);">{{data.orderNumber}}</a>
</ng-template>
</e-column>
<e-column field="followUpDate" headerText="Follow Up Date" width="18" type='date' textAlign='Center' [allowEditing]='true' editType="datepickeredit" [edit]='followUpParam'
[format]="{type: 'date', format: 'MM/dd/yyyy'}">
<!-- <ng-template #template let-data>
{{data?.followUpDate}}
</ng-template> -->
</e-column>
<e-column field="userName" headerText="User" width="20" editType='dropdownedit' [edit]='usersParams'>
<ng-template #template let-data>
{{data?.userName}}
</ng-template>
</e-column>
<e-column field="specificationReviewNotes" headerText="Specification Review Notes" [edit]='reviewNotesParams' width="25" textAlign="Left" headerTextAlign="Center">
<ng-template #template let-data>
{{data?.specificationReviewNotes}}
</ng-template>
</e-column>
</e-columns>
</ejs-grid>
I've two issues and first one being the major one.
1) Here is my code and when I try to edit cell with followup date and blur event doesn't seem to work which is used to update latest value in the Database
2) Please help me with some value to clear the calendar selected date since I've disabled the input text box part to restrict users from
entering false data