Search found 162 matches

Hello Bryntum Support, I have an array of resources, I must remove and add resource regularly, but when this resource have event and remove, add again, it don't have display event of this resource. Example Mike have one event, Linda have one event: Screen Shot 2021-11-18 at 13.30.17.png When I click...

I have 2 events with same start time in a resource rows. But when I resize an events, it make affect remain events. How do I fix that ?
Below is my video and image, it have blue background

Screen Recording 2021-11-17 at 11.04.33.mov
(10.24 MiB) Downloaded 45 times
Screen Shot 2021-11-17 at 11.07.13.png
Screen Shot 2021-11-17 at 11.07.13.png (542.06 KiB) Viewed 202 times

I need disabled schedule context menu outside resource rows. Example I have schedule contains 2 rows (2 resources), below is the example image:

Screen Shot 2021-11-16 at 15.31.12.png
Screen Shot 2021-11-16 at 15.31.12.png (353.09 KiB) Viewed 328 times
alex.l wrote: Tue Mar 09, 2021 1:27 pm

Hi sactory,

Thanks for the use case, it helped a lot. I was able to repro the issue, the ticket is here: https://github.com/bryntum/support/issues/2499

Hello,
Anything news to fix it in future version ?

You can use https://bryntum.com/docs/scheduler/api/Scheduler/feature/EventTooltip#event-beforeShow listener and conditionally return false from the function for the records you do not want to show the tooltip for. If you add the following to AppConfig.js of Vue simple demo it only shows tooltips fo...

I temporary disable hover tooltip use useSelector: false, allowHover: false. But I must display tooltip on hover in some records. How can I disable tooltip on hover in some records base condition?

Yes. my solution:

eventMouseOver: ({ eventRecord, resourceRecord }) => {
          const data = this.scheduler.getElementFromEventRecord(
            eventRecord,
            resourceRecord
          );
          data.title = eventRecord.name;
        },

I use tooltip for other features.

i have done this task. Thanks