Declined
Last Updated: 25 Apr 2016 15:41 by ADMIN
Emrah
Created on: 25 Apr 2016 15:07
Category: Kendo UI for jQuery
Type: Feature Request
1
Changing Datetimepicker date validation problem
Hello,
I try datetimepickerfor control on a mvc project, I set min and max values for it, when I change time, it validates for min, max values and changes automatically but not for date, so I had to write script below. 
Regards.

function dateChange(){
        if (this.value() < this.min()) {
            this.value(this.min());
        }
        else if (this.value() > this.max()) {
            this.value(this.max());
        }
    }
1 comment
ADMIN
Telerik Admin
Posted on: 25 Apr 2016 15:41
Can you report this via our support system at telerik.com? Thus my colleagues from the support department will investigate and provide an appropriate explanation/solution.

Thank you for your understanding.