Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

ng-template not working as expected in Month and TimelineDay views. It's working well in Week and Day views though.

Code: 

<e-viewoption="Month">
<ng-template#eventSettingsTemplateMonthlet-data>
<style>
.event-text-wrap {
width: 100%;
word-wrap: break-word!important;
white-space: pre-wrap!important;
}
</style>
<divclass="event-text-wrap">{{getTimeString(data.StartTime)}} - {{getTimeString(data.EndTime)}}</div>
<divclass="event-text-wrap">{{data.Subject}}</div>
<divclass="event-text-wrap">{{data.Teacher}}</div>
<divclass="event-text-wrap">{{data.Location}}</div>
<divclass="event-text-wrap">{{data.Description}}</div>
</ng-template>
</e-view>


Screenshot of Mnth view (not working as expected)Screenshot 2019-06-14 at 13.41.11.png


Screenshot of Day view (working as expected):
Screenshot 2019-06-14 at 13.41.29.png