0
A
回答
1
補丁是非常簡單的:
diff --git a/src/agenda/AgendaEventRenderer.js b/src/agenda/AgendaEventRenderer.js
index 9e7243b..8b0ec63 100644
--- a/src/agenda/AgendaEventRenderer.js
+++ b/src/agenda/AgendaEventRenderer.js
@@ -182,7 +182,7 @@ function AgendaEventRenderer() {
leftmost = colContentLeft(colI*dis + dit);
availWidth = colContentRight(colI*dis + dit) - leftmost;
availWidth = Math.min(availWidth-6, availWidth*.95); // TODO: move this to CSS
- if (levelI) {
+ if (true) { // PATCH : Always render indented events
// indented and thin
outerWidth = availWidth/(levelI + forward + 1);
}else{
現在看起來像這樣:
相關問題
- 1. 避免FullCalendar中的事件疊加
- 2. Fullcalendar添加事件
- 3. Fullcalendar添加事件
- 4. 用datetimepicker添加fullcalendar事件
- 5. JQuery FullCalendar添加事件
- 6. jQuery FullCalendar事件重疊(多個事件同一行)
- 7. 事件在Fullcalendar
- 8. jQuery fullcalendar - 事件
- 9. 事件源FullCalendar
- 10. FullCalendar - 添加多個事件或添加事件源
- 11. FullCalendar事件彈出
- 12. 排序Fullcalendar事件
- 13. Fullcalendar後臺事件
- 14. FullCalendar「背景事件」
- 15. FullCalendar事件刪除
- 16. FullCalendar多個事件
- 17. Fullcalendar事件寬度
- 18. Fullcalendar重複事件
- 19. FullCalendar中的事件
- 20. 過濾FullCalendar事件
- 21. Fullcalendar事件渲染
- 22. Fullcalendar重取事件
- 23. FullCalendar - 添加鏈接到事件
- 24. fullCalendar添加一個類到事件
- 25. Fullcalendar手動添加新事件
- 26. jquery FullCalendar塊添加更多事件
- 27. 在fullcalendar中添加多個事件hovertext
- 28. fullcalendar添加另一個事件來源
- 29. FullCalendar事件添加和更新示例
- 30. FullCalendar加倍使用JQuery的事件
我不認爲你可以用CSS做這件事,因爲fullcalendar在事件上使用絕對定位。另外,在[事件渲染](http://arshaw.com/fullcalendar/docs/event_rendering/)文檔上快速打開後,看起來着色是唯一可以修改的東西。 – augustknight 2012-03-14 01:14:50
所以我必須修改庫本身,我想我會在修補完成後發佈修補程序。 – Dorian 2012-03-15 01:00:21