Is it possible to have the Kendo UI for Angular Dateinput component not allow the startDate to equal the endDate?
I have it styled like this, from the example, but I don't see any ways to restrict the range except for disallowing particular dates. Here all days are allowed, I just need the endDate to always be at minimum, the next day.
Thanks!
<kendo-daterange>
<label>
<span class="label">Start</span>
<kendo-dateinput kendoDateRangeStartInput [(value)]="range.start"></kendo-dateinput>
</label>
<label>
<span class="label">End</span>
<kendo-dateinput kendoDateRangeEndInput [(value)]="range.end"></kendo-dateinput>
</label>
<kendo-daterange-popup [animate]="false"></kendo-daterange-popup>
</kendo-daterange>