简体   繁体   中英

Event template design

I need to add Event details in kendo scheduler. Currently, it shows only the title name of the event.

Also I need to set some design in event list. Currently I am using ng-template inside kendo-scheduler. My HTML is like below:

<kendo-scheduler [kendoSchedulerBinding]="events"
 [selectedDate]="selectedDate" style="height: 400%; width: 100%;" >
                     <ng-template kendoSchedulerEventTemplate let-event="event" ngbTooltip="Tooltip on top">
                            {{ event.title }}
                            <br>
                            <span style="padding-top: 10px;">{{ event.description}}</span>
                        </ng-template>
<kendo-scheduler-month-view></kendo-scheduler-month-view>
<kendo-scheduler-week-view></kendo-scheduler-week-view>
<kendo-scheduler-day-view></kendo-scheduler-day-view>
</kendo-scheduler>

I am not able to understand how I format the template.

Could you provide your "events" and "resources" datas?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM