Hi Team,
I am using NumericTextBox control with in reactive form, I am not able show required validation when the value is null.
please find below code I have used
<div class="col-md-6 col-lg-6">
<label for="txtpollInterval" class="control-label glyphicon-asterisk mandatory">Poll Interval in Minutes</label>
<ejs-numerictextbox formControlName="pollInterval" id="pollInterval" format="n0" floatLabelType='Always' ></ejs-numerictextbox>
<div *ngIf="submitted && f.pollInterval.invalid" class="invalid-feedback">
<div *ngIf="f.pollInterval.errors.required">Poll Interval is required</div>
</div>
</div>
I saw the sample over here and implemented the same, but not worked out for me, also the ./app/template.html missing in the samle.
Thanks,
Shiva