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

329
Views
Cómo cambiar el idioma del número de días en Fullcalendar

alguien que me ayude a cambiar el número personalizado de días en idioma hebreo Fullcalendar ver imagen aquí

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

FullCalendar tiene una opción dayCellDidMount en los ganchos de procesamiento de celda de día, que se activa después de montar la celda de día. https://fullcalendar.io/docs/day-cell-render-ganchos

Puede reemplazar el texto del día con cualquier texto personalizado usando esta opción.

 var calendar = new FullCalendar.Calendar(calendarEl, { ... dayCellDidMount: function (info) { var day = moment(info.date).locale('hu').format('DD'); // Get the localized date; hu is for hebrew here. You can use like 'en', 'de' // Hide the original element var originElement = info.el.querySelectorAll(".fc-daygrid-day-number"); originElement.forEach(e => e.classList.add("d-none")); //Insert custom or localized text var targetElement = info.el.querySelectorAll(".fc-daygrid-day-top"); targetElement.forEach(e => e.innerHTML = day); } });
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!