I am using the below code:
$(“#jqxWidget”).jqxDateTimeInput({
width : ‘95%’,
value : new Date(),
formatString : “MM/dd/yyyy”
});
$(“#jqxWidget”).jqxDateTimeInput(‘setMinDate’,new Date());
By default the date is shown as Today’s time in the text field. Now if i click calendar and select future date then at the same instance i am not able to select present date it becomes disabled.
The fix i need is even though i select future date i should able to select present date also.