KendoReact Scheduler custom rendering

21 views Asked by At

Given this Scheduler component, that I would like to configure to render the render the title with an Icon.

The stackblitz demo contains this json:

{
    TaskID: 68,
    OwnerID: 1,
    RoomID: 2,
    Title: 'Breakfast with Tom',
    Description: '',
    StartTimezone: null,
    Start: '2024-01-23T09:45:00.000Z',
    End: '2024-01-23T11:30:00.000Z',
    EndTimezone: null,
    RecurrenceRule: null,
    RecurrenceID: null,
    RecurrenceException: null,
    isAllDay: false,
}

I would like something like this for the title:

"<i class="fa fa-cloud"></i> Breakfast with Tom"

As I see there is no built in solution for it. The desired result is like this: enter image description here Is this somehow possible with this component?

0

There are 0 answers