Languages

Menu
Sites
Language
Launch Calendar

Is there a possibility to launch Calendar application using application controll API for tizen web application?

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

7 Replies
Kirill Chuvilin
Try this: https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.native.appprogramming%2Fhtml%2Fguide%2Fapp%2Fappcontrol_calendar.htm
Kirill Chuvilin
Oh sorry.. it is for native. Hm.. that is srange, because I came to the page from web guide..
Maksym
Thanks, there is enough info :) (My mistake was in initialization of ApplicationControl and I got launchAppControl success callback bu immidiately failure result. Now it's ok)
konduri sai swathi
Hi, Try the below code :
function onsuccess() {
		console.log("The application has launched successfully");
	}
	tizen.application.launch("ph1vq2phrp.Calendar", onsuccess);
Add "application.launch" privilege in config file. "ph1vq2phrp.Calendar" is application ID of Calendar App.
Marek Jóźwik

tizen.application.launch("ph1vq2phrp.Calendar", onsuccess);

gives error:

Launchpad returns not found error.

Could anybody write the proper path for Tizen 3.0.0.2 ?

 

Armaan-Ul- Islam

For Samsung Gear try:

com.samsung.w-calendar2

 

Let know If it worked out for you.

Marek Jóźwik

It works.

Thank you!