将完整日历右侧标题从按钮更改为列出项目

时间:2013-04-02 09:00:42

标签: jquery html css3 fullcalendar

我正在使用FullCalendar,我想做以下事情 - 请提出最佳方法:

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

1 个答案:

答案 0 :(得分: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;
}