Hello, Im trying to implement a date range with the selection mode from jqDateTimeInput
Without it being set to range, the control updates fine.
However, setting the selectionMode=”range” , brings two issues
1) Everything will be set to NaN on the calendar, unless I set the initial value to be a empty array.
2) The form Control value is not being update after changes the values
<jqxDateTimeInput selectionMode="range" [formControl]="fc"></jqxDateTimeInput>
<pre>
{{fc.value | json }}
</pre>
APP
fc: FormControl = new FormControl([]);
The value keeps it at “[]” even changing the dates.