This is a migrated thread and some comments may be shown as answers.

OnItemTapped in Calendar

1 Answer 117 Views
Calendar & Scheduling
This is a migrated thread and some comments may be shown as answers.
Dmitry
Top achievements
Rank 1
Dmitry asked on 21 Feb 2018, 10:47 AM
Hello, I'm new here and I am trying to understand the possibilities of RadCalendar.
I am testing it on a Xamarin Forms project where I am using calendar.

In xamarin.forms if I public a listpage, I can use 'OnItemTapped' method to open detailed form of item in a new pageform.
I was trying to find the same posibility in RadCalendar.

I added image with example of CalendarViewMode.Day.
Is it possible on click of selected event in CalendarViewMode.Day to open form with more detailed information of this event?

1 Answer, 1 is accepted

Sort by
0
Accepted
Lance | Senior Manager Technical Support
Telerik team
answered on 22 Feb 2018, 12:43 AM
Hi Dmitry,

The RadCalendar has an AppointmentTapped event (in addition to a SelectionChanged event).

The event args contain the tapped appointment:

private void RadCalendar_OnAppointmentTapped(object sender, AppointmentTappedEventArgs e)
{
    // e.Appointment is of type IAppointment
    var appt = e.Appointment;
}

Regards,
Lance | Tech Support Engineer, Sr.
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Calendar & Scheduling
Asked by
Dmitry
Top achievements
Rank 1
Answers by
Lance | Senior Manager Technical Support
Telerik team
Share this question
or