Hi ijekov,
Thank you for writing.
Regarding your questions:
1. To restrict the range of allowed dates, you can use the “setMinDate” and “setMaxDate” functions.
For example:
$("#jqxDateTimeInput").jqxDateTimeInput('setMinDate', new Date(2010, 0, 1));$("#jqxDateTimeInput").jqxDateTimeInput('setMaxDate', new Date(2013, 0, 1));
2. You can achieve this by setting the ‘readonly’ property to true. The code example below shows how to set it:
$("#jqxDateTimeInput").jqxDateTimeInput('readonly', true);
Best Regards,
George