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

RadCalendar Popover Tap Event

3 Answers 111 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Ericky
Top achievements
Rank 1
Ericky asked on 28 Jun 2017, 05:56 PM

Hello.

 

Is there any way to attach a listener to the tap event of a popover event item?

3 Answers, 1 is accepted

Sort by
0
Ericky
Top achievements
Rank 1
answered on 28 Jun 2017, 06:01 PM
Also, is "inlineEventSelectedEvent" available for angular? It doesn't seem to work.
0
Ericky
Top achievements
Rank 1
answered on 29 Jun 2017, 11:55 AM

Bump.

0
Nick Iliev
Telerik team
answered on 29 Jun 2017, 12:07 PM
Hi ,

Regarding adding a tap listener to the PopOver event

Currently, this functionality is not supported for PopOver events. However, you can successfully use the exposed global events like dateSelected to access the selected date and implement custom logic when the selection (tap0 has occurred.

Regarding 
is "inlineEventSelectedEvent" available for angular?

Yes, you can reuse all of the events exposed in nativeScript Core in an Angular based application.
Example on how to achieve this with Angular
<RadCalendar [eventSource]="eventSource" (inlineEventSelected)="onInlineEventSelected($event)"></RadCalendar>
and then providing the callback in your code-behind
public onInlineEventSelected(args: CalendarInlineEventSelectedData) {
    console.log("onInlineEventSelected");
}

Regards,
Nikolay Iliev
Progress Telerik
Did you know that you can open private support tickets which are reviewed and answered within 24h by the same team who built the components? This is available in our UI for NativeScript Pro + Support offering.
Tags
Calendar
Asked by
Ericky
Top achievements
Rank 1
Answers by
Ericky
Top achievements
Rank 1
Nick Iliev
Telerik team
Share this question
or