1

我正在使用 FullCalendar 执行以下操作 - 请建议最好的方法:

  1. 我想将右标题重新定位到最左端
  2. 目前,标题选项显示为内联块按钮。我希望它们显示为列表项。onclick 功能不应受到影响。
4

1 回答 1

1

我自己想通了:添加一个新按钮只需要添加以下
$('.fc-header-right').append('Some Button');

要将所有标题右侧按钮以垂直列表显示格式对齐屏幕左侧,需要将样式添加到 fullCalendar.css

.fc-header-right{
     position:absolute;
     left:0 ;
}

并向按钮添加一个类并向该类添加样式

.fc-header-right-button {
    position: relative;
    display: table;
    padding: 0 .6em;
    overflow: hidden;
    height: 1.9em;
    line-height: 1.9em;
    white-space: nowrap;
    cursor: pointer;
    margin-left: 50px;
}
于 2013-04-03T12:43:22.420 回答