Hi
Kevin,
We
have checked on your requirement and suggest you to use MoreEventsClick event
to get the cell details when clicking on the more indicator like the below
code.
|
@using
Syncfusion.EJ2.Schedule
@(Html.EJS().Schedule("schedule")
.Width("100%")
.Height("550px")
.Views(ViewBag.view)
.CurrentView(View.Month)
.MoreEventsClick("onMoreEventsClick")
.EventSettings(new ScheduleEventSettings { DataSource = ViewBag.datasource })
.SelectedDate(new DateTime(2018, 2, 15))
.Render()
)
<script
type="text/javascript">
function onMoreEventsClick(args) {
//Customize your code
}
</script>
|
Let
us know if you need any assistance.
Regards,
Ruksar Moosa Sait