Discuss anything related to web development but no technical support questions


Post by xjpmauricio »

Hi, is there a way for me to hide a event tooltip when showing a event context menu?
It might be achieved with beforeTooltipShow?

Thanks.

Post by xjpmauricio »

i guess this might do the trick?

listeners: {

beforeTooltipShow : function(scheduler, record) {
if (scheduler.gCtx) {
return scheduler.gCtx.isVisible() ? false : true;
}
},

...is there someone with a better way to do this?

Post by mats »

That would do it yes, the other option would be to explicitly hide it upon showing the context menu. Your choice :)

Post Reply