calendar

Using HTTPHandler in C# .NET 3.5 with jQuery Week Calendar

I've been trying to get this to work for weeks now, all to no avail. I am sure that my code must be failing through something fairly small and stupid, but having tried a number of different approaches I'm starting to really struggle as to what the problem might be. Has anybody else managed to get the jQuery Week Calendar (http://github.c...

Using Kal calendar without doing the initialization (and so on) in the AppDelegate

I'm using the Kal calendar. For the code shown below I'm referring to the Holiday example. In this example the allocation and initialization of Kal is done in the applicationDidFinishLaunching in the AppDelegate. The UITableViewDelegate protocol (e.g. didSelectRowAtIndexPath) is also positioned in the AppDelegate class. The AppDelegate:...

Extending Calendar in Java

I wanted to add more methods to the Calendar from java.util.Calendar, but I'm having trouble using the getInstance method. If I have an object like: public class DateObject extends Calendar{ // other methods here } And I do DateObject mon = DateObject.getInstance(); The code does not work. Even if I replace it with Calendar.getInstance...

Calendar.before(Object when), why Object?

From the javadoc of Calendar.before(Object when): Returns whether this Calendar represents a time before the time represented by the specified Object. This method is equivalent to: compareTo(when) < 0 if and only if when is a Calendar instance. Otherwise, the method returns false. Why does it accepts an Object if when someone passes...

Calendar in javascript/ajax, php, and mysql?

Hi, I need to create a calendar which will allow people to view appointments and edit these. Am aware there are many out there put I have to create my own and it has to be my own code, so anything like jQuery is out of the question. I have studied Google Calendar and although I don't want it as advanced as this something similar should d...

Sync google calendar with iphone cal through coding..?

I want to make an app...that can sync my iphone calender with google calendar..i want to do it through coding.... ...

adding events from google calendar programmatically..?

I want to add events to native calendar from google's calendar programmatically ..i have and program that can fetch events from google calendar and show them in table view..how can i add these events to iphone's native calendar one by one...? ...

memory leak problem.

Hi friends, I am using kal calendar in my app. the things i have to show three different seprate calendar. When i run on instrument it puts lot of memory leaks on following codes. I am new to instruments and memory leaks. canbody suggest me what i have went wrong? Regards, sathish CalendarDetails.h @interface CalendarDetails : NSObje...

Get months in view in radcalendar

I am using a telerik RadCalendar in my WPF project. I am using a 3 months view style so at a time 3 months are displayed. When you press the left arrow, the previous 3 months are displayed and so on.. Is there a way to get all 3 months in view at a moment. example if May, June and July are currently being displayed then I should get 5,6 ...

Telerik RadCalendar set focus on more than 1 dates

I want to focus on multiple dates in multiple months in a 3 month wide telerik RadCalendar view on my WPF project. Right now only the current date (today's date) gets highlighted (or focused). I want to focus on other dates too besides today's date. Any suggestions/ideas how to go about it? ...

How to get localized short day-in-week name (Mo/Tu/We/Th...)

Can I get localized short day-in-week name (Mo/Tu/We/Th/Fr/Sa/Su for English) in Java? ...

How do I get one jquery datepicker input to integrate with value of another?

I have a form with 3 input fields that use jQuery's DatePicker plugin. The fields are #startdate, #enddate, and #raindate. I am using DatePicker's event function to get the #startdate and #enddate to work together so the #enddate cannot be before the #startdate. Both those fields are required, by the way. The #raindate field is not re...

Validator offers no controls to validate.

I've created a DetailsView with a Calendar TemplateField. When I drag a RangeValidator near the calendar to try and validate the date range, the ControlToValidate dropdown property for the RangeValidator is blank and fails to display the Calendar control for me to select it. How can I get the RangeValidator to show the calendar in the ...

PHP Calendar - Trouble with any other month than the current month

Hi Everyone, I'm building my first application that requires a calendar. I have it working great for the current month. My problem is that i'm not sure how to make it so that when a user clicks the link to go to the next month, it will show the next month. I'll try to only post the code that is necessary so here's my variables //gets...

Recurring Events in Sharepoint changed from Exchange 2010 - alerts not correct.

Hi All, After installing Exchange 2010 SP1, it appears that Sharepoint is behaving differently. When a user edits an instance of a recurring item on a calendar that has not been edited previously, it treats this as a creation (generates an "added" alert email and updates the created date/time to the current date/time). Some users rece...

best practice or prior art for javascript scheduling calendar

This is a bit of a subjective question, and a red banner is warning me that it 'is likely to be closed', but I'm not sure of a better place to ask so here goes. My application calls for a very lightweight display-only scheduling calendar. Essentially an appointment book where you can see a few days or maybe a month at a time, and in ea...

subscribe to public google calendars on iphone

i am making an application in which i have to show a list of public calendars so that users can subscribe to the calendar they want..how can i implement it through coding...? ...

How could I represent a series of events like google calendar?

I need to be able to plot events on a vertical timeline and I like the way Google Calendar achieves this: Currently I'm displaying the information with a ListView component, but this two practical drawbacks: It's far from clear when there's a gap Or, conversely, when there's an overlap Both problems stem from the lack of represent...

Full Calendar Missing Events at the End of the week (after 7:00 PM) with gcalFeed

I have an implementation of full calendar pulling a Google Calendar feed for a Community Ice Rink. Everything seems to be working fine except the last two events of the week are missing from 7:00PM on on Saturday. I have tried deleting the events, adding a different event. Renaming events, removing other events to see if there are too ma...

Python: replacing method in calendar module.

Hello people in the know, I'm trying to replace two methods in calendar module: import calendar c = calendar.HTMLCalendar(calendar.MONDAY) def ext_formatday(self, day, weekday, *notes): if day == 0: return '<td class="noday">&nbsp;</td>' if len(notes) == 0: return '<td class="%s">%d<br /></td>' % (self.cssclas...