halfnelson / svelte-native-nativescript-ui

Svelte Native support for Nativescript UI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

radCalendar click events

tonymurray opened this issue · comments

I have a radCalendar (svelte-native-nativescript-ui/nativescript-ui-calendar)
I cannot figure out how to capture click events on calendar entries. I tried the last four properties/attributes :

<radCalendar id="myCalendar"
eventSource={events}
eventsViewMode="Inline"
viewMode={current_view_mode}
selectedDate={current_selected_date}
inlineEventSelected={eventSelected}

cellTapEvent={clickFunction}
dateDeselectedEvent={clickFunction}
dayViewEventSelectedEvent={clickFunction}
inlineEventSelectedEvent={clickFunction}
/>

(Ref: https://v7.docs.nativescript.org/ns-ui-api-reference/classes/radcalendar.html)