简体   繁体   中英

Fullcalendar: Dropdown HTML within Resource hidden by Calendar

I'm trying to add specific actions within a dropdown to the given fullcalendar resources. So far Fullcalendar is a very great tool, but somehow the calendar overlaps the HTML content that I'm injecting.

Is there a better way to inject Dropdowns and other HTML elements, without being overlapped by the calendar?

It would be great if the dropdown would be completely visible. Am I missing something?

在此处输入图像描述

resourceGroupLabelDidMount: function(e) {
  var $this = $(e.el);
  $this.find('.fc-datagrid-cell-cushion').html($('.element').html())
}

Here is a code example: https://codepen.io/sirsir1/pen/BaYXqVj

Found a solution to my own question, it seems to work fine by adding position-fixed class to the ul element:

<ul class="position-fixed">
  ...
</ul>

Here is a working code example: https://codepen.io/sirsir1/pen/zYWdPRN

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM