Our pure JavaScript Scheduler component


Post by arucar »

Hi !

Last week i upgrade the version of the scheduler librairie from 2.1 to 3.0.2 in my project and now, i don't know why, i get an extra empty tooltip on the first column. i really don't know where it come from and how to remove it...
extra_tooltip.PNG
extra_tooltip.PNG (23.63 KiB) Viewed 1949 times
if anybody know why i get this... tanks a lot in advance :D

Post by mats »

Could you please provide a small test case where this is reproduced so we can inspect it?

Post by sobu »

Is it possible to enable Tooltip for Task Name?
Can we enable WBS also into the existing Tooltip content on Gantt Task bars?

Post by mats »

@sobu - Please start your own thread.

Post by arucar »

i will check with my technical leader how to provide you that because i don't have more dedicated time to investigate on that.. so i'll probably do it on my free time ^^.

Post by mats »

First, try using our latest release which was released today?

Post by arucar »

Ok thanks, i'll check the changelog and i'll try to up to this version and see

Post by arucar »

Ok... so i finaly find the issues. i have a file scheduler.component.ts with this line:

@Input() cellTooltip: boolean | object = true;

i put it to false and i have no more tooltip in my cell.

Post by sergey.maltsev »

Hi!

You could configure this with this code in component's html with the latest Scheduler Wrapper version.
<bry-scheduler
    #scheduler
    [cellTooltipFeature] = false
    ...
></bry-scheduler>
Check Angular integration guide here.
https://www.bryntum.com/docs/scheduler/#guides/integration/angular.md

Post by arucar »

thank you :)

Post Reply