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

When I try to utilize the (click) for the 'Today' Toolbar Item, it does not emit an event for me.

THe following code does not work for me:

{
Add comment145Plus   name: 'Today',
Add comment146Plus  


Add comment149Plus   click: () => this.setSchedulerToToday(),
Add comment150Plus   },



I have a workaround which works:



readonly toolbarItems: ToolbarItemModel[] = [


Add comment144Plus   {
Add comment145Plus   name: 'Custom',
Add comment146Plus   text: 'Today',
Add comment147Plus   type: 'Button',
Add comment148Plus   align: 'Right',
Add comment149Plus   click: () => this.setSchedulerToToday(),
Add comment150Plus   },