calendar

List of popular importable calendar formats?

Say I wanted to write a program that would export calendar data so that it could be imported into another calendar application. What would be some popular formats for that, and where could I find information on the formats of those files? ...

Can't get fullCalendar to display google calendar events

Hi - I'm very new to JQuery etc. I'm trying to set up fullCalendar to display my Google calendar events. I followed the instructions from Adam Shaw's site but although the calendar appears on the site, the events don't - it's just blank. I'm sure it's just me marking the code up wrong: $(document).ready(function() { // page is now rea...

Need a service that build calendar (iCal, outlook) links

The users of my Joomla based site often need to create an artice where the post some appointment dates. Now they would like to have an easy way to add calendar links for the most popular calendars ICal, Outlook, Thunderbird, Google Calendar. Do you know of a simple way how they could do that? Maybe there is a joomla plugin for that? Or m...

Python: Get system calendar format

Is it possible to return the current system calendar format using Python? For example non-Gregorian calendar formats such as the Thai Buddhist calendar. ...

Monotouch - add event to iphone calendar from my app

hey is it possible for my app to programatically add events (with permission from the user) to the iphones calendar? cheers w:// ...

JavaScript Recurring Appointments Library

I'm looking for a JavaScript library that can calculate recurring appointments. Something that can handle things like "every 2nd Wednesday". The solution needs to be JavaScript and client side only. I don't need a calendar, just something that can do the date recurring appointment calculations. Any suggestions? ...

How do I access the Calendar/Events from Android SDK?

I am trying to write an app that relies on Calendar events. I was going to write it as a service, and just have it check the calendar from time to time, but I found out that the SDK does not offer direct access to the Calendar yet. So is there any other way to access Events? Maybe a broadcast when an event starts and stops? Something...

Rendering a table of dates with prices

Let's say you were given the arrival date 12/28/10 and a departure date of 1/5/11, in the form of an array ( which is always consistent and can be relied upon ) such as: $data = array( 0 => array( 'Date' => '12/28/10', 'Price' => 100 ), 1 => array( 'Date' => '12/29/10', 'Price' => 100 ), 2 => array( 'Date' => '12/30/10', 'Price' => 100 ...

Java: What/where are the maximum and minimum values of a GregorianCalendar?

What are the maximum and minimum values of a GregorianCalendar? Are they in a constant like Integer.MAX_VALUE, or maybe GregorianCalendar.get(BLAH)? In a nutshell, how can I create a GregorianCalendar instance with min/max value? ...

How check if today is sunday with Java Calendar

I wrote few lines of code which doesn't work correctly. Why? Could sb explain me? Calendar date = Calendar.getInstance(); date.set(2010, 03, 7); if(date.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY) System.out.println("OK"); ...

Adding an events calendar to zen cart

How do I add an events calendar to Zen Cart? ...

AJAX Calendar extender select month and year

Is it real and how can I think about it. To make so the user will select only the month and year, not date, because he need a period on full month, not some date. here is simple control ... <asp:TextBox ID="TextBox3" runat="server" /> <asp:CalendarExtender ID="TextBox3_CalendarExtender"...

How to create "recurData" in Google Calendar?

I want to create recurring events of Calendar using Google API. I am following links: Google Calendar API I am not getting how to create "recurData". I can't modify String and pass it as parameter. Tried DDay.iCal Version 0.80. also. DDay.iCal There are some Example code given.I tried them. I am able to create ".ics" file. But wh...

Copy android contacts' birthday to calendar

I'm an htc tattoo owner, and i'm watching for a way to copy contacts' birthday (retrieved from facebook) to the built-in calendar. I'm not afraid to develop a custom app but i'll be more happy if there's one built-in or already existing... Thinking over this thing, i realized there's more fun creating a custom app... :P Do you k...

JQuery - Year Turnover on Month Count - Jquery UI Slider

I have ran into an interesting issue while trying to create a more usable datepicker-like interface. I am using a slider to change the month of a listed calendar (Mar 2010, Apr 2010, May 2010, etc.) A very simple mock-up here: http://dev.primestudiosllc.com/riverbank/ I will need to first get the current month and set that as the begin...

javascript onchange event with calendar control

I'm trying to get a javascript event to reload a page when I change a date using calendar control, but the page won't reload. Any idea how to do this? this is what i have right now <input type="text" name="start_date" onFocus="showCalendarControl(this);" value="#FORM.start_date#" onchange="changeDateReload(this.value);" /> function ...

C# Calendar Appointments capture

I am trying to capture the entries for calendar events from Outlook in my C# code and I am having trouble in capturing the recurring records. They seem to show up everyday even though if I make a recurring record for a week/month. Any suggestions on how it can be done? Here is a summary of what I am doing: 1. Fetching all folders presen...

Problem with YUI Calendar widget

I managed to get the YUI calendar widget working fine. But When it displays it doesn't "float" over the page, that is, it pushes content around out shape. I need it to float above the page and not affect other elements. There doesn't seem to be a property to force the calendar to float over the page. Does anyone know how to ensure that...

WPF Toolkit Calendar takes two clicks to get focus

I am using the WPF Calendar that is part of the WPF Toolkit. I have two different calendars on a control. When I attempt to choose a date from one calendar and then from the second calendar, I have to click on the second calendar twice to get it to choose a date. Has anyone else had this issue and know of a solution? ...

Java: getting current Day of the Week value

At the moment, I'm creating a java schedule app and I was wondering how to find the current day of the week while using the Calendar class to get the first day of the week. Here is the method I'm using in a class in order to set up a week schedule public static String getSunday() { SimpleDateFormat d = new SimpleDateFormat(dayDate)...