Results 5 comments of Niyas VH

> �@NIYASSURABHI How is it not working? Any error message printed out in the console? This is just a simply DOM query, could you check the DOM structure to if...

I have fixed this issue by changing current date as you said in another issue. this.calendar.currentDate = new Date(this.calendar.currentDate.setMonth(this.calendar.currentDate.getMonth() + 1)); But i noticed another situation that, when i click...

> @NIYASSURABHI You could set the date to some day in the middle of the month so that it won't cause such edge case. Another way is you could check...

"Another way is you could check after setting the month, whether the month is the expected one, if not, adjust the date to the expected month." How can i do...

var cuurentday=this.calendar.currentDate; let currentMonth = cuurentday.getMonth(); let nextMonth = new Date(cuurentday.setMonth(cuurentday.getMonth() + 1)); debugger if(nextMonth.getMonth()-currentMonth>1){ this.calendar.currentDate = new Date(this.calendar.currentDate.getFullYear(),currentMonth+1, 0); } else{ this.calendar.currentDate = new Date(this.calendar.currentDate.setMonth(this.calendar.currentDate.getMonth() + 1)); // }...