I am trying to create calendar event in my Titanium App for Android Platform. For that I am using below code, It does't give any error also didn't to create any calendar events

var calendars = Ti.Android.Calendar.selectableCalendars;
        var names =[];
        for (var i = 0; i<calendars.length; i++) {
            names.push(calendars[i].name);
        }

        var calendarDialog = Titanium.UI.createOptionDialog({
            title: 'Select a Calendar',
            options: names,
            cancel:1
        });
        calendarDialog.addEventListener('click', function(e){
            var ci = e.index+1;
            var calendar = Ti.Android.Calendar.getCalendarById(ci);

            var eventBegins = new Date(2011, 12, 26, 12, 0, 0);
            var eventEnds = new Date(2011, 12, 26, 14, 0, 0);
            var hasReminder = true;
            var details = {
                title: 'i m testing',
                description: 'message',
                begin: eventBegins,
                end: eventEnds,
                hasAlarm:true,
                allDay:true
            };

            var event = calendar.createEvent(details);

            if (hasReminder)
            {
                var reminderDetails = {
                    minutes: 10,
                    method: Ti.Android.Calendar.METHOD_ALERT
                };

                event.createReminder(reminderDetails);
            }

            alert('Event was created!');
        });
        calendarDialog.show();

Anyone help me to solve this issue.. My Titanium SDK version is 1.7.5, I have tried this in Android 2.3 Phone

link|improve this question

71% accept rate
Hi, anybody having idea about creating calender event – joe Dec 9 '11 at 13:06
I dropped your code into a new TiStudio project and it worked just fine. No errors and the event was created in my calendar. I am, however, using the latest 2.1 SDK so you might consider updating. – Mark Biek May 8 at 20:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.