Ram Dhayalan
Ram Dhayalan

Reputation: 131

How to open the native calendar app of the device in phonegap (cordova)

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

Answers (2)

Ram Dhayalan
Ram Dhayalan

Reputation: 131

The plugin "EddyVerbruggen/Calendar-PhoneGap-Plugin" can also open the native calendar:

window.plugins.calendar.openCalendar();

Upvotes: 1

jcesarmobile
jcesarmobile

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

Related Questions