This question is locked. New answers and comments are not allowed.
I am displaying a calendar inside a tabstrip and making taking the full space there
with a small jQuery code I am changing the display
I am showing the full dayname and making things different
Here is my code
This works perfectly and fulfills exactly my needs
However all my efforts are ruined when somebody hits next or previous month buttons.
Apparently the Calendar is rendered again and my settings are lost.
Is there a way I can trap the next/previous month events
with a small jQuery code I am changing the display
I am showing the full dayname and making things different
Here is my code
$('.t-calendar th').css('width', '200px').css('height', '50px').css("text-align", "center")$('.t-calendar td').css('height', '70px').css("text-align", "center")$('.t-calendar th').each(function (index){ $(this).text($(this).attr('title'));});However all my efforts are ruined when somebody hits next or previous month buttons.
Apparently the Calendar is rendered again and my settings are lost.
Is there a way I can trap the next/previous month events