e-more-indicator behavior

I am using the CellClick event to capture the behavior of the cell but if I click on the more indicator I still want that behavior. I can check the classname for e-more-indicator but can't figure out how to trigger the +1 behavior.


1 Reply

RM Ruksar Moosa Sait Syncfusion Team May 18, 2022 01:29 PM UTC

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


Loader.
Up arrow icon