FullCalendar列表视图,高度:自动无法正常工作



我正在使用demo list-views.html并尝试设置height: auto,但这不起作用!日历有垂直卷轴。

$(document).ready(function() {
    $('#calendar').fullCalendar({
    height: 'auto',
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'listDay,listWeek,month'
        },
        // customize the button names,
        // otherwise they'd all just say "list"
        views: {
            listDay: { buttonText: 'list day' },
            listWeek: { buttonText: 'list week' }
        },
        defaultView: 'listWeek',
        defaultDate: '2017-02-12',
        navLinks: true, // can click day/week names to navigate views
        editable: true,
        eventLimit: true, // allow "more" link when too many events
        events: [
            {
                title: 'All Day Event',
                start: '2017-02-01'
            },
            ***continue-demo

我不知道这是否会有所帮助,但是您包括print.css吗?这可能会纠正它。同样在打印CS上,请确保将媒体="设置为媒体=" print"。

相关内容

  • 没有找到相关文章