Click here to Skip to main content
15,914,924 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: Research study: Survey among app-developers Pin
Afzaal Ahmad Zeeshan25-Mar-15 4:10
professionalAfzaal Ahmad Zeeshan25-Mar-15 4:10 
Questionprogram in c++ Pin
Member 1141942018-Mar-15 7:03
Member 1141942018-Mar-15 7:03 
AnswerRe: program in c++ Pin
Gonzoox19-Mar-15 2:57
Gonzoox19-Mar-15 2:57 
QuestionQuestion about about creating Android app ! Pin
M.a.x.a.m12-Mar-15 4:14
M.a.x.a.m12-Mar-15 4:14 
AnswerRe: Question about about creating Android app ! Pin
Jochen Arndt12-Mar-15 4:30
professionalJochen Arndt12-Mar-15 4:30 
GeneralRe: Question about about creating Android app ! Pin
M.a.x.a.m12-Mar-15 4:48
M.a.x.a.m12-Mar-15 4:48 
GeneralRe: Question about about creating Android app ! Pin
Jochen Arndt12-Mar-15 8:09
professionalJochen Arndt12-Mar-15 8:09 
GeneralRe: Question about about creating Android app ! Pin
M.a.x.a.m13-Mar-15 5:25
M.a.x.a.m13-Mar-15 5:25 
GeneralRe: Question about about creating Android app ! Pin
Dennis E White12-Mar-15 12:24
professionalDennis E White12-Mar-15 12:24 
GeneralRe: Question about about creating Android app ! Pin
M.a.x.a.m13-Mar-15 4:35
M.a.x.a.m13-Mar-15 4:35 
GeneralRe: Question about about creating Android app ! Pin
Richard MacCutchan13-Mar-15 4:59
mveRichard MacCutchan13-Mar-15 4:59 
GeneralRe: Question about about creating Android app ! Pin
M.a.x.a.m13-Mar-15 5:00
M.a.x.a.m13-Mar-15 5:00 
GeneralRe: Question about about creating Android app ! Pin
Richard MacCutchan13-Mar-15 5:09
mveRichard MacCutchan13-Mar-15 5:09 
GeneralRe: Question about about creating Android app ! Pin
M.a.x.a.m13-Mar-15 5:24
M.a.x.a.m13-Mar-15 5:24 
GeneralRe: Question about about creating Android app ! Pin
Dennis E White13-Mar-15 6:31
professionalDennis E White13-Mar-15 6:31 
QuestionCalendar-PhoneGap-Plugin Not Working for ios Pin
rnvenkatkumar25-Feb-15 18:27
rnvenkatkumar25-Feb-15 18:27 
I am developing phonegap ios app which should have calendar that insert, delete and modify even from my app to native calendar

so, I used EddyVerbruggen Calendar-PhoneGap-Plugin. The link is

https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin

The sample I worked is


Quote:
var title = 'test title';
var loc = 'chennai';
var notes = 'test Notes';
var eventstartdate = "2015,1,15,0,0,0,0,0";
var eventenddate = "2015,1,16,0,0,0,0,0";
var fulleventstartdate = new Date(feventstartdate);
var fulleventenddate = new Date(feventenddate);

//---To Create calendar--------------------------------------
function createCalendar() {
var createCalOptions = window.plugins.calendar.getCreateCalendarOptions();
createCalOptions.calendarName = "Mycal";
createCalOptions.calendarColor = "#ffec8b";
window.plugins.calendar.createCalendar(createCalOptions, onSuccess, onError);
}

//---To Create event--------------------------------------
function createevent() {
window.plugins.calendar.createEventInNamedCalendar(title, location, notes, fulleventstartdate, fulleventenddate, calendarName, onSuccess, onError);
}

//---To delete event--------------------------------------
function deleteevent() {
window.plugins.calendar.deleteEventFromNamedCalendar(title, loc, notes, fulleventstartdate, fulleventenddate, calendarName, onSuccess, onError);
}

//---To modify event--------------------------------------
function updates() {

var newTitle = "New title";
window.plugins.calendar.modifyEventInNamedCalendar(title, loc, notes, fulleventstartdate, fulleventenddate, newTitle, loc, notes, fulleventstartdate, fulleventenddate, calendarName, onSuccess, onError);
}

window.onerror = function (msg, file, line) {
alert(msg + '; ' + file + '; ' + line);
};


function onSuccess(msg) { alert('Calendar success: ' + JSON.stringify(msg)); }



in the above code creating calendar and inserting calendar works well

but, Delete event and Modify event (update) not working in ios

what else i have to do to fix it

kindly reply ASSP

Note: I build my app through phonegap build for ipa file
SuggestionRe: Calendar-PhoneGap-Plugin Not Working for ios Pin
Richard MacCutchan25-Feb-15 21:43
mveRichard MacCutchan25-Feb-15 21:43 
GeneralWP7? Pin
littleGreenDude18-Feb-15 15:20
littleGreenDude18-Feb-15 15:20 
GeneralRe: WP7? Pin
newton.saber18-Feb-15 15:59
newton.saber18-Feb-15 15:59 
GeneralRe: WP7? Pin
PavanPareta2-Mar-15 21:21
PavanPareta2-Mar-15 21:21 
GeneralRe: WP7? Pin
Dan Colasanti7-Mar-15 15:59
professionalDan Colasanti7-Mar-15 15:59 
GeneralRe: WP7? Pin
littleGreenDude18-Mar-15 12:52
littleGreenDude18-Mar-15 12:52 
QuestionI need the android game source code Pin
YASEEN AHMAD11-Feb-15 19:02
YASEEN AHMAD11-Feb-15 19:02 
GeneralRe: I need the android game source code Pin
Kornfeld Eliyahu Peter11-Feb-15 19:37
professionalKornfeld Eliyahu Peter11-Feb-15 19:37 
AnswerRe: I need the android game source code Pin
ZurdoDev16-Feb-15 2:49
professionalZurdoDev16-Feb-15 2:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.