Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
This is known issue, which is already addressed. Here is the code which fix the problem:
setDate:
function
(date, value) {
if
(value
instanceof
DATE) {
date.setFullYear(value.getFullYear(),
value.getMonth(),
date.getDate());
}
else
{
var
month = date.getMonth() + value;
date.setMonth(month);
(month > 11) {
month -= 12;
(month > 0 && date.getMonth() != month) {
date.setDate(0);