You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 29, 2018. It is now read-only.
So I found a bug when using the new IE9 regular mode, which means using as well
Anyways the problem is with 1 line of code, needs to be replaced by 3 lines instead as IE9 doesn't like this:
var cell = $(''); // IE9 Bug, this won't work
correction of the code is this (now fully working with IE9):
var cell = $('');
cell.attr('colspan', '7');
cell.addClass('title');
Since I really like this calendar-view, I spent couple of hours trying to find the problem. And so I'm posting the solution with hope it helps everyone!!!
Enjoy :)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
So I found a bug when using the new IE9 regular mode, which means using as well
Anyways the problem is with 1 line of code, needs to be replaced by 3 lines instead as IE9 doesn't like this:
var cell = $(''); // IE9 Bug, this won't work
correction of the code is this (now fully working with IE9):
var cell = $('');
cell.attr('colspan', '7');
cell.addClass('title');
Since I really like this calendar-view, I spent couple of hours trying to find the problem. And so I'm posting the solution with hope it helps everyone!!!
Enjoy :)
The text was updated successfully, but these errors were encountered: