My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions
Issue 1527: Events don't display in IE8 when double filter specified
1 person starred this issue and may be notified of changes. Back to list
Status:  Invalid
Owner:  ----
Closed:  Aug 2013


Sign in to add a comment
 
Reported by EviLzLiK...@gmail.com, Sep 5, 2012
I don't feel like explaining why my CSS has two IE filter attributes on one element (too long of a story), but it took me a few hours to figure out that when you apply two filters to the "fc-content" element, the events do not get populated in the calendar.

To put it simply, add this to your CSS and watch FullCalendar break in IE8:

.fc-content
{
	background-color: rgba(255, 255, 255, 0.2);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00333333", endColorstr="#00333333", GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cffffff', endColorstr='#4cffffff');
}

Yes, I know at first glance it makes no sense to have this setup, but it's just one of those "hacks" to fix a different display problem in my site when the client is IE8 (unrelated to FullCalendar).

Just thought this might help someone else... obviously to fix the problem, just remove one of the filters OR add the following to your CSS:

.fc-content div
{
	filter: none;
}
Sep 5, 2012
#1 EviLzLiK...@gmail.com
The first example to cause the bug should've been (note the added "div" selector):

.fc-content div
{
	background-color: rgba(255, 255, 255, 0.2);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00333333", endColorstr="#00333333", GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4cffffff', endColorstr='#4cffffff');
}
Aug 18, 2013
Project Member #2 adamrs...@gmail.com
(No comment was entered for this change.)
Status: ReproTemp
Aug 25, 2013
Project Member #3 adamrs...@gmail.com
This message is being bulk-sent to a number of issues, both [very] old and new.

I have been working on taming this issue tracker, which has gotten out of control after months of neglect. You are receiving this message because I could not successfully reproduce the bug you were reporting with a reasonable amount of effort. I have written some new bug-report guidelines to be used by all bug reports going forward:

    http://arshaw.com/fullcalendar/wiki/Report-a-Bug/

Its salient point is that all bug reports should have an isolated demonstration, viewable online with a tool like JSFiddle.

If the bug you originally reported is still important to you, could you please first try the latest version of FullCalendar and see if it is fixed? If not, could you please file a NEW bug report that follows the new guidelines? This issue will not be monitored for further comments.

I'm sorry I have taken so long to respond to many of your request, and I'm sorry if this new procedure causes extra work for you. Going forward, the issue tracker will be much more of a well-oiled machine.

Again, if you must, PLEASE SUBMIT A *NEW* BUG REPORT (following the new guidelines) INSTEAD OF COMMENTING ON THIS ONE. Further comments on this report will be ignored. Thanks.
Status: Invalid
Labels: -Type-Defect Type-Bug
Sign in to add a comment

Powered by Google Project Hosting