I want to show events from an external source in the Kronolith calendar views. I don't want to do this by exporting the events to iCal and then showing them as an external calendar. The events are grouped in multiple calendars, the user should be able to disable/enable these calendars.
...
I want to create a calendar in my application that external users can view.
The CalDAV (basically WebDAV+iCalendar) format seems to be relatively widely supported, although if rather unusually by some clients (Outlook, for instance). Completely new to me though.
I want to externally publish events, I don't need users to be able to upda...
I think I figure out what question I am trying to ask I dont want get(Calendar.MONTH) I want the month not to be greater than the last caldendar month that is why i am doing month -1, i realize that if i use get(calendar.MONTH) it is getting month of november I just want to see check and make sure its not a greater then the december to u...
I want to create a event calendar in my mvc application please tell me from where shall I start doing that.Any useful resource
...
Hi !
I am trying to validate a rich:calendar for not null input using <rich:beanValidator />, but i am not able to validate for null inputs.
For example in my constraits.xml file, i validate getter for calendar:
<getter name="dateOfBirth">
<constraint annotation="javax.validation.constraints.Past"/> (works fine)
<constraint anno...
Hello All,
I want to fulfill this functionality:
Calendar by month pops up with event names written on the calendar
Access a daily event summary by clicking a day in the calendar
Please tell me from where shall I start
Thanks
Ritz
...
I have an embedded system that currently keeps track of seconds until an event is supposed to occur using a real-time clock driven by a watch crystal.
Now it needs to keep track of the actual date and time. So, I need to be able to calculate the day, month, year, hour, minute and second from a start date/time and offset in seconds.
C...
My company is adding some rich calendar functionality to our Swing application. We want it to work like Outlook's calendar. Here are some of our requirments:
Views for day, week, and month
The ability to specify calendar items down to the minute level
The ability to drag and drop calendar elements into different slots
Editing of cale...
I am using jQuery calender. When viewed in IE8, the next and previous buttons are not displayed.But i am able to see the buttons when i view the page in IE7.
is there anything that i am missing?
...
Hello all,
I have seen somewhere that you can't add a reminder to iPhone calender from another native application programatically .
Is it true or false ? If false then how can we achieve that . If true then is there any other way of adding reminder to iPhone calendar or you can't do it all.
...
I need to calculate the date of the first day in a calendar week given a year/week, e.g.
Week 53 in 2009 -> Mon, 28.12.2009
Week 1 in 2010 -> Mon, 04.01.2010
How would you wirte that code?
PS: In the Gregorian calendar the first week of a year is the first week with 4 days.
...
I'm currently writing a room booking diary template for an ASP .Net CMS and I need to be able to retrieve the information from an exchange calendar.
Can anyone point me in the direction of some good sample code which lets me query an individual calendar based on a month parameter? Also, is it possible to provide a parameter to the quer...
I am writing a program that get month and year from the user, and then print out the calendar. But the calendar is only correct in January (every two years).
How do I make the other months correct? What am I doing wrong?
#include "stdafx.h"
void printMonth (int* startDay, int* days);
int _tmain(int argc, _TCHAR* argv[])
{
int s...
Hi folks! I'm writing trying to build a calendar right from scratch. I'm using the function written by David Walsh (see link) and it's great.
He does a query for each day's cell.
But, I'm afraid that when the script's gonna have to run 30 queries in each render, it's gonna be sloooow.
So, I was trying to think in another logic, for ex...
I'm working on syncing events from our project management DB into a google calendar using PHP.
Creating events in GCal works fine, but deleting them is proving to be a real pain, especially as there aren't any examples on how to do it.
Has anyone done this before in PHP (not on Zend Framework)?
Thanks
...
findCalendarStart: time into Calendar: 1260575897
findCalendarStart: set hour : 13
findCalendarStart: after hour : 1249775897
findCalendarStart: after hour string: Thu Jan 15 11:09:35 UTC 1970
findCalendarStart: set minutes : 13
findCalendarStart: after minutes: 1250015897
findCalendarStart: what calendar returns: 1250015897
I p...
I'm building a calendar and I'm really dumb when it comes to arrays.
First of all, I need to query my database, so:
$events = mysql_query ("SELECT id,title,date WHERE date BETWEEN 2009-01-01 AND 2009-01-31")
or die(mysql_error());
So, now I need to order those events so, when I'm echoing my calendar table, I can check this array for ...
I had this problem some years ago and back then I implemented a "different logic" in order to deliver the project but the doubt remains in my mind and hopefully with your help I'll be able to understand it now.
Suppose I have some scheduled events on my database that may or may not spawn over several days:
id event start ...
Hay Guys, I'm using the bog standard Calendar from the jQuery UI system. The result shown (after a user clicks a date) is MM/DD/YYYY.
I want to check that this date is not old than 2 years old
ie
say a user picks
01/27/2004
this should say that the date is older than 2 years. However,
12/25/2008
should pass the test.
any ideas...
If you were building an application that tracked event data, how would you push that event data out so it could be on people's personal calendars and smartphones?
My thought was to create an .ics file and subscribe to it via Google Calendar, Outlook, Exchange, etc. But they appear to subscribe to a "snapshot" of the file, and don't cons...