Page 1 of 1

[ANGULAR] How to customize content in the scheduler's floating box

Posted: Fri Dec 09, 2022 10:55 am
by boyitech

Greetings!

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

Image


Re: [ANGULAR] How to customize content in the scheduler's floating box

Posted: Fri Dec 09, 2022 11:45 am
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>`
        }
    },

Re: [ANGULAR] How to customize content in the scheduler's floating box

Posted: Thu Dec 15, 2022 11:01 am
by boyitech

I used the EventToolTip but got some errors.

Image


Re: [ANGULAR] How to customize content in the scheduler's floating box

Posted: Thu Dec 15, 2022 11:22 am
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?