Hi,
we discovered an issue with Day and Week View in Calendar.
It is easy to reproduce, just take the Kitchen Sink - Bryntum Releases Example and add tooltipTpl for the day and week view.
Here is the changed MainPanel.js to reproduce this issues:
Ext.define('Cal.examples.bryntumreleases.view.MainPanel', {
extend : 'Cal.panel.Calendar',
alias : 'widget.bryntumreleases-mainpanel',
requires : [
'Cal.examples.bryntumreleases.store.Event',
'Cal.examples.bryntumreleases.store.Resource'
],
title : 'Bryntum Releases',
// the date is the last time the data to releases.json was copied
date : new Date(2018, 7, 10),
eventStore : 'event',
resourceStore : 'resource',
// show the resource filter
resourceFilter : {
dock : 'right'
},
mode : 'agenda',
modes : {
day: {
view: {
tooltipTpl: new Ext.XTemplate('<span class="sch-event-header"><div class="sch-event-footer">{Name}</div>'),
}
},
week: {
view: {
tooltipTpl: new Ext.XTemplate('<span class="sch-event-header"><div class="sch-event-footer">{Name}</div>'),
}
},
month : {
view : {
minEventsPerCell : 2
}
}
}
});
Is it possible that Tooltips for Full Day Events get aligned like Tooltip for Normal Events ?
I added 2 Pictures that explain our issue.