Our pure JavaScript Scheduler component


Post by boyitech »

Greetings!

How to customize content in the scheduler's floating box? For example, add 'x3' after event name.

Image


Post by tasnim »

Please check this https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip

    features : {
        eventTooltip : {
            template : data => `
            <div class="b-sch-event-tooltip">
             ${data.startText} -> ${data.endText}
            </div>`
        }
    },

Post by boyitech »

I used the EventToolTip but got some errors.

Image


Post by tasnim »

I have tested in our angular example And it works fine

Could you please upload a test case so we can check what's wrong?

Attachments
works fine.png
works fine.png (17.53 KiB) Viewed 111 times

Post Reply