需要在活动时间之前显示活动标题

时间:2018-03-05 21:07:27

标签: jquery fullcalendar

在下图中,事件被排除为" 7a生日派对"。 如何在活动时间之前显示活动名称,例如"生日聚会7a"?

enter image description here

在fullcalendar.js中修改了JS代码14475 - 14495

return '<a class="' + classes.join(' ') + '"' +
            (eventDef.url ?
                ' href="' + util_1.htmlEscape(eventDef.url) + '"' :
                '') +
            (skinCss ?
                ' style="' + skinCss + '"' :
                '') +
            '>' +
            '<div class="fc-content">' +
            (this.dayGrid.isRTL ?
                titleHtml + ' ' + timeHtml : // put a natural space in between
                titleHtml + ' ' + timeHtml //
            ) +
            '</div>' +
            (isResizableFromStart ?
                '<div class="fc-resizer fc-start-resizer" />' :
                '') +
            (isResizableFromEnd ?
                '<div class="fc-resizer fc-end-resizer" />' :
                '') +
            '</a>';

1 个答案:

答案 0 :(得分:0)

在fullcalendar.js中,我修改了行号14486以在时间之前呈现事件名称。

timeHtml + ' ' + titleHtml //Line 14486 Before modification

titleHtml + ' ' + timeHtml //Line 14486 After modification