我正在使用FullCalendar,我想做以下事情 - 请提出最佳方法:
答案 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;
}