Hello I have updated the version as I saw on your previous answers but still have error when hovering on the scheduler cells. Its happening only on production. thanks
dp.cellBubble = new DayPilot.Bubble({onLoad:function(args) {
var cell = args.source;
args.html = cell.start.toString("d MMMM yyyy");
}});
Comment posted by ilan 9 years ago.
That's the version that I'm using: 2911
this is the function for showing the bubble -
dc.cellBubble = new DayPilot.Bubble({
onLoad: function (args) {
var cellStart = args.source.start.toString('d MMMM yyyy');
args.html = cellStart + " " + args.source.resource;
}
});
and again, the weird thing is that its work fine locally (I have 3 kinds of bubbles) but on production its break.
thinking about adding tooltip instead.
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.