Our powerful JS Calendar component


Post by digohd »

Hi,

I've encountered an issue when upgrading Calendar from version 4.3.7 to 5.0.4. When an event has its name set to null, it renders the html returned by our eventRenderer function as a raw string instead of the desired format. See attachment.

Best regards,
Simon

Attachments
rawHtmlBryntum.png
rawHtmlBryntum.png (7.63 KiB) Viewed 304 times

Post by tasnim »

Thank you for your report! Reproduced the bug, Here is the ticket: https://github.com/bryntum/support/issues/4605


Post by digohd »

Thank you @tasnim!

This works as a temporary solution for us when loading data:

events.forEach((e) => {
  if (e.name === null) e.name = '';
});

Post Reply