I have an input field where i am using kendo datepicker this field is not required and user can not remove value from input but can change from the datepicker , So IE there is 'x' icon user able to remove the value from the input and that is disabling the form and not enabling even you select values again.
So i am looking for two solutions.
1- How to remove 'x' icon from the input in IE ? 2- How to keep Save button enable even value is not there because its not required field ?
main.html
<form id="createRcsaFormName" name="createRcsaCycleForm" class="marginLeft10" novalidate
k-validate-on-blur="false">
<div class="col-md-5 changeWdh">
<input type="text" class="form-control" name="opLossFromDate" id="opLossFromDate" kendo-date-picker
ng-model="rcsaCycleDTO.opLossFromDate"
onkeydown="return false;" k-format="'MM/dd/yyyy'" k-max="'{{today}}'"
ng-disabled="rcsaCycleDTO.cycStatLkupCode !== 'RA_CYC_SETUP'"
ng-change="validateDate('opLossFromDate','opLossToDate')"/>
</div>
<p class="text-danger" ng-show="createRcsaCycleForm.opLossFromDate.$touched && createRcsaCycleForm.opLossFromDate.$error.required">OPLoss Validation Date is Required</p>
<button class="btn btn-primary" ng-hide="editMode" type="button"
ng-disabled="createRcsaCycleForm.$invalid || rcsaCycleDTO.cycStatLkupCode=='RA_CANCEL'"
ng-class="{disableSaveCls:createRcsaCycleForm.$invalid}"
ng-click="submit()">Save</button>