I tried with the latest version and it works, but the color inside doesn't seem to respect the white color I tried. E.g. this is my code:
dp.onEventMoving = function(args) {
args.left.enabled = true;
args.left.html = args.start.toString("h:mm tt");
args.right.enabled = false;
args.fontColor = "#ffffff";
args.html = args.e.data.text ;
/* Does not work
const movingInfo = this.getBookingTitle(args.e.data);
*/
};
Do I need to actually add some sort of the real html to get the white color inside the grey?
Thanks.