Reputation: 131
I'm using the Phonegap's calendar plugin "EddyVerbruggen/Calendar-PhoneGap-Plugin" to access and create calendar events. But is there a plugin that opens the devices native calendar App.
Upvotes: 0
Views: 1145
Reputation: 131
The plugin "EddyVerbruggen/Calendar-PhoneGap-Plugin"
can also open the native calendar:
window.plugins.calendar.openCalendar();
Upvotes: 1
Reputation: 53301
You can create a plugin that executes this code
NSString* launchUrl = @"calshow://";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: launchUrl]];
Or you can try with existing plugins, like inappBrowser or launchMyApp using calshow://
as url
Upvotes: 1