Click here to Skip to main content
15,888,325 members
Home / Discussions / Mobile
   

Mobile

 
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 
QuestionWhy would Microsoft not support all options to setsockopt? Pin
charlieg3-Feb-15 12:38
charlieg3-Feb-15 12:38 
AnswerRe: Why would Microsoft not support all options to setsockopt? Pin
Herman<T>.Instance18-Aug-15 1:32
Herman<T>.Instance18-Aug-15 1:32 
QuestionHow to create a video in C# (.net 3.5) on a motorola MC75A Pin
volontier27-Jan-15 22:03
volontier27-Jan-15 22:03 
QuestionProblem fetching page in Windows Phone 8.1, VB.NET Pin
BlackChart3-Jan-15 10:57
BlackChart3-Jan-15 10:57 
AnswerRe: Problem fetching page in Windows Phone 8.1, VB.NET Pin
David C# Hobbyist.3-Jan-15 13:10
professionalDavid C# Hobbyist.3-Jan-15 13:10 
GeneralRe: Problem fetching page in Windows Phone 8.1, VB.NET Pin
BlackChart4-Jan-15 4:49
BlackChart4-Jan-15 4:49 
GeneralRe: Problem fetching page in Windows Phone 8.1, VB.NET Pin
David C# Hobbyist.5-Jan-15 13:04
professionalDavid C# Hobbyist.5-Jan-15 13:04 
GeneralRe: Problem fetching page in Windows Phone 8.1, VB.NET Pin
BlackChart6-Jan-15 7:36
BlackChart6-Jan-15 7:36 

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.