Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

171
Views
Fullcalendar V5 show time tooltip while moving the cursor

While moving the cursor on the calendar I want to show the time. I tried to solve the problem with the viewRender but the 5th version of the full calendar doesn't support it anymore.

this what i tried to do :

 viewRender: function(view, element){
      $('#calendar').find('.fc-slats').find('[class="fc-widget-content"]').hover(
        function() {
          var tr = $(this).parent();
          var time = tr.find('td.fc-axis.fc-time.fc-widget-content').find("span").text();
          $(this).append('<td class="temp_cell" style="border: 0px; width:5px;">'+time+'</td>');
        },          
        function() {                        
          $(this).children('.temp_cell').remove();
        }
      );
    }
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Use eventMouseEnter instead. You can use tippyJS for this:

import tippy from "tippy.js";
...

eventMouseEnter: function (info: any) {
          let tooltip = tippy(info.el, {
            content: time,
            placement: "top",
            interactive: true,
            arrow: true,
            theme: "material",
            appendTo: document.body,
            allowHTML: true,
            duration: [1, 1],
            animation: "scale-extreme",
          }});

https://atomiks.github.io/tippyjs/

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!