calendar

Grails datePicker

Hi, I'm looking for a calendar component for my Grails app. I'm aware that Grails already has the g:datePicker, but it's a bit primitive and not very visually appealing. I've had a look on the contribute-a-tag page and in the grails plugin portals and there's a wide range of options. Rather than trying them all out, I'd be very gratefu...

asp:Calendar in an MVC View, preset the date from Controller and Post the value from View?

I have need of a simple view that let's the user set the date of something. In MVC I can pass the date via ViewData. I want to use the asp:Calendar control (I think). Should I instantiate the control and pass the entire control via ViewData or can I make it in the view and just pass a date over? Once the user is OK with the date will it ...

How to attach OnClick event for a javascript generated textbox?

I have a table row which contains a textbox and it has an onclick which displays a javascript calendar... I am adding rows to the table with textbox, but i dont know how to attach onclick event to the javascript generated textbox... <input class="date_size_enquiry" type="text" autocomplete="off" onclick="displayDatePicker('attendanceDa...

Different Unique Ids created using WebDAV and Exchange vs Outlook

I am creating an appointment in Exchange via WebDAV, but the UId created is not the same as if I create the appointment in Outlook. The UId I believe is the same as the GlobalObjectId and should be unique and not change. The UId if created via WebDAV is: CD0000008B9511D182D800C04FB1625DDD67374428B4C644A0A359A2586E30B3 The UId if cre...

Has anyone actually encountered a calendar widget that was better than just text input for DOB?

Im learning asp.net mvc and have been investigating jquery and the like. As yet I havent found a calendar that is actually any good for inputting a date of birth. It often involves masses of scrolling to find the correct year! It is often easier/quicker to just type it in. Just wondering if anyone had found any examples of good calenda...

Singular/Recurring Schedules in my CMS

I'm building a CMS that has a requirement to allow users to store schedules. The interface is similar to MS Outlook, so the recurring schedules pretty much needs to mimic what that UI can support. When the schedule is saved, we need to somehow be alerted when an event is supposed to happen. Right now, the plan is to have a cron job run ...

Bold/Color dates in Telerik RadCalendar/WPFToolkit Calendar

How can I bold or change the color of the date in a RadCalendar/Calendar. I recently switched over to WPF and I find no AddBoldedDate(DateTime dt)? ...

google calendar sharing

Hi everybody Is it possible to use OAuth with ACL.... Did anyone use this.. Help me. Thanks Regards Sharun ...

Getting valued of am/pm from calendar object in case of blackberry?

i need to get the value of am/pm depending on the time set so i do this... calendarobject.get(Calendar.AM_PM); but this always returns 0 weather the system time is am/pm... can any one tell me why this is happening..? ...

Google Calendar

Hi I'm developing one web application project using java for education industry.In this Admin have all rights to access the google services of other users like A,B,C..... for this is use OAuth.Then i tried Admin want to share user A's calendar to user B using OAuth.But i got stuck in this step. Is it possible Plz Help me Thanks Regard...

Changing Alignment of YUI Multi Page Calendar

I want to change the aligment of YUI Multi Page Calendar Control from its default alignment "Horizontal" to "Vertical" is there any parameters required to change the same. ...

How do I determine time passed between two Calendar Objects in Java?

What is the best way to count the amount of time between two Calendar dates in java. I am writing a method that determines the number of months that pass between two dates and returns a boolean based on a predefined term of months. This is my code(does not work correctly). This code always returns false. Also this code does not take int...

Use a custom URL to get a customized printable version of Google Calendar

I want to print a week's worth of Google Calendar events from the command line. I figure using https://www.google.com/calendar/printable rather than some API is the easiest way to do that. I need some help with the arguments though. In the command below, what do each of the arguments mean? https://www.google.com/calendar/printable?mod...

django calendar free/busy/availabilitty

I am trying to implement a calendar system with the ability to schedule other people for appointments. The system has to be able to prevent scheduling a person during another appointment or during their unavailable time. I have looked at all the existing django calendar projects I have found on the internet and none of them seem to have...

Create new calendar system support in Exchange OWA

Since Exchange doesn't provide support for all local calendar types in OWA, I need to create one, using Microsoft.Net's support of calendars, but where should I start? ...

How to get all the dates displayed in a QCalendarWidget

Hello, I am using a QCalendarWidget in my application, and I overloaded the updateCells method to put a red background on every dates which meet certain conditions. My problem is I don't know how to get the first date displayed in the calendar (not the first date in the month), and the last date displayed. Example: in february, the fir...

Search EWS CalendarItems with last modified time

I'm searching CalendarItems with ExchangeWebServices..In msdn document there is a field as LastModifiedTime. How do I query CalendarItems by LastModifiedTime with ExchangeServerBindings ? ...

Google Calendar API: How to get a CalendarEntry for the default Calendar?

I'm trying to get the 'normal' url for a users default calendar feed (e.g. http://www.google.com/calendar/feeds/[email protected]/private/full). I would like to use the [email protected] part of the URL as a unique ID for that calendar. I know I can do things with the default calendar using the URL http://www.google.com/calendar/feeds/default/pr...

How to change the data in Telerik's RadGrid based on Calendar's selected dates?

I was creating another usercontrol with Telerik's RadGrid and Calendar. <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> <table class="style1"> <tr> <td>From</td> <td>To</td> </tr> <tr> <td><asp:Calendar ID="Calendar1" runat="server" SelectionMode="Day"></asp:Ca...

Return dates of current calendar week as array in PHP5

How would I put together a PHP5 function that would find the current calendar week and return the dates of each day in the week as an array, starting on Monday? For example, if the function were run today (Thu Feb 25 2010), the function would return an array like: [0] => Mon Feb 22 2010 [1] => Tue Feb 23 2010 [2] => Wed Feb 24 2010 [3] ...