简体   繁体   English

所有事件都显示在左上角(jQuery Full Calender)

[英]All events are displaying in the top left corner (Jquery Full Calender)

So I am wondering what would cause it so that all events for the full jquery calender would display in the top left hand corner. 所以我想知道是什么原因导致整个jQuery日历的所有事件都显示在左上角。 even if there is one it will show in the tab where you have "sunday" when it might be scheduled for next monday 即使有一个,它也会在您有“星期日”的选项卡中显示,并可能在下周一安排

My fix was as follows in my css file: 我的修复如下,在我的css文件中:

#calendar * {
    position: static;
}

I had the same problem, but only events in the current day were doing this. 我遇到了同样的问题,但是当前只有事件在做。

It was caused by a CSS conflict - I had a rule in a custom jQuery UI CSS file that was causing the events to obey position: relative, when fullCalendar depends on events having position: absolute. 这是由CSS冲突引起的-我在自定义jQuery UI CSS文件中有一条规则,该规则导致事件服从position:relative,而fullCalendar依赖于具有position:absolute的事件。

My first suggestion is to try setting the theme option to both true and false, and see if you have the same problem in both cases. 我的第一个建议是尝试将主题选项设置为true和false,并查看两种情况下是否存在相同的问题。

Next, try disabling any other CSS files you are using on the page, other than the default jQuery UI CSS and the fullcalendar CSS. 接下来,尝试禁用页面上正在使用的任何其他CSS文件,默认的jQuery UI CSS和fullcalendar CSS除外。

If you notice a change, this should give you some evidence as to where the problem is. 如果您发现更改,则应该为您提供有关问题所在的一些证据。 If not... I'm not sure what to tell you :) 如果没有...我不确定该告诉你什么:)

ithcy is right. ithcy是正确的。 Try disabling other css. 尝试禁用其他CSS。

I also had this happen. 我也有这种情况。 Where all the events were at the top left corner stacked on top of each other. 所有事件都位于左上角,彼此堆叠在一起。

I tried deactivating all other wp plugins taking off all js. 我试图取消所有其他js插件的所有wp插件。 None of that worked. 这些都不起作用。

It ended up being css. 最终成为CSS。 In my css file resets I had a rule that positioned divs to be relative. 在我的css文件重置中,我有一个将div定位为相对的规则。 I took that off and it fixed it. 我把它拿下来,并固定了它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM