calendar

Trying to program a Drupal calendar input blacklist

I'm creating a Drupal form with a datetime-based javascript popup calendar input that allows users to set a date for when they want to pick something up or drop it off. However, I can't find a way to limit what dates are selectable as input. For example, if we're only open Monday-Wednesday-Friday, I don't want people to be able to use th...

asp.net Date picker

I've searched for a free and good Date picker out there but I didn't found one that will be good for me. I've created one on my own. I've added a Calendar to the aspx page, and on PageLoad set it's attribute: calReqToDate.Style.Add("display", "none"); I've created a "Show" button and set it's attribute on PageLoad too: btnCalReqToD...

How can I get the current week using Python?

Using Python... How can I get a list of the days in a specific week? Something like... { '1' : ['01/03/2010','01/04/2010','01/05/2010','01/06/2010','01/07/2010','01/08/2010','01/09/2010'], '2' : ['01/10/2010','01/11/2010','01/12/2010','01/13/2010','01/14/2010','01/15/2010','01/16/2010'] } The key of the dictionary in this example...

How can I select all of the Sundays for a year using Python?

Using Python... How can I select all of the Sundays (or any day for that matter) in a year? [ '01/03/2010','01/10/2010','01/17/2010','01/24/2010', ...] These dates represent the Sundays for 2010. This could also apply to any day of the week I suppose. ...

How to implement a calendar like google's with jQuery?

It should provide ease to add event to the calendar. When I click on the cell,should let me edit the notes. EDIT I've looked through many calendars but none of them meet the requirement that it should let the user add notes easily! ...

Qt Python Calendar: selected day direct access

Hi Everybody, I have calendar that is working fine. Here is the function that display the full date: def selectDate(self,date): self.fullDate = str(date.day()) + " / " + str(date.month()) + " / " + str(date.year()) print "full date: %s" % self.fullDate And here the code with the calendar: def TabCalendar(self): self.cal...

Javascript Calendar

Hi all, I am looking for a Javascript calendar with support for drag-and-drop, extensive events model (drag, drop, deletion/adding of items). Also has to be capable of displaying a schedule for multiple persons. That'd be something similar to "Multiple Resources" view of http://dhtmlx.com/docs/products/dhtmlxScheduler/index.shtml Fre...

how to implement iphone calendar day view

Does anyone know how to implement a view similar to the iphone calendar day view? ...

Server Side Calendar Control in asp.net using the ical event format

Hi, Does anyone know of a Calendar scheduler control that would display a whole month of events including the title of the event in each day? I need it to use an ical data format that would come from a restful web service request. I would like the control to output plain html with no javascript as it has to work on public sector websit...

JSpinner Date Editor in Buddhist Calendar

Is there a way to use JSpinner.DateEditor with a Buddhist Calendar? When I change my locale to "th", "TH" and recreate my calendars they are indeed Buddhist Calendars. However, the JSpinners are not updated. Here is some sample code: Locale locale = new Locale("th", "TH"); Locale.setDefault(locale); // Reinitializing calendars with n...

Highlighting multiple dates in MonthCalender Control in window application

Hi All. i am create a Event Calender using MonthCalender control in window application asp.net can any one tell me how can i highlight multiple dates in MonthCalender thanks in advance ...

Google Calendar API Sharing Example

Hi Experts, I am looking for examples of share calendar and share event using google calendar API in any programming language java, .net, java script. Thanks, Aqeel ...

Rails: display events with calendar_date_select

Hello, I'm trying to display events in calendar generated by calendar_date_select plugin for Rails. I have Concert model with datetime field date. Can I somehow throw in @concerts which equals Concert.all to calendar_date_select_tag to display links to make days where concert is clickable? I would like to stick to this helper cause I...

iPhone - Calendar Like Paging on Table View Header

Does anyone know a good example for Paging the views using dates... Calendar Like Paging on the Table View Header? I know it can be done a lot of time management, financial management apps have it. I just need to go on a right direction before cooking something of my own. Thanks. ...

File is empty and I don't understand why. Asp.net mvc FileResult

Hi I am trying to use the built in asp.net file result to return a file that I am trying to make through a file stream. I am using Dday.ical to make my calendar for export MemoryStream export = new MemoryStream(); iCalendarSerializer serializer = new iCalendarSerializer(iCal); serializer.Serialize(export,System.Tex...

YUI Calendar, How can I implement it like the jQuery UI Calendar?

With jQuery UI I can simply use .datePicker() or similar and it will automatically attach it to the focus and blur events of a text field. How can I do this with YUI calendar, sample code would be great!! Thanks. ...

horizontally scrolling calendar

I've used the following script http://valums.com/scroll-menu-jquery/ to build a horizontally scrolling calender. Here is how I've implemented it. http://zifimusic.com/testing/horizontalCalendar.html 90% of the calendar activity I am expecting is within a month or two of the current date. However, I think I need to provide the ability...

Calendar.getActualMaximum(Calendar.WEEK_OF_YEAR) weirdness

Either I don't understand the method getActualMaximum(int) or the field WEEK_OF_YEAR, or there's a Sun bug involved (or all three)...could someone explain to me why (at least in a German locale...) the following code: Locale.setDefault( Locale.GERMAN ); Calendar c = Calendar.getInstance(); c.set( Calendar.YEAR, 2010 ); c...

No-code solution for calendar view of SharePoint news items

MOSS provides you an excellent option to create a "news" site in your portal. It adds some "Archive" functionality, but it is very limited - a list of all articles published in that particular site. My users would like to see something better, a real archive of published articles, browsable by publishing date. What I've tried so far, ...

Find first and last day for previous calendar month in VB.Net

Hi! I'm creating a report in MS SQL Server Reporting Services and need to set the default Start and End Date report parameters to be the first and last dates of previous calendar month and need help. The report is generated on the 2nd calendar day of the month and I need values for: Previous Calendar Month - first day - last ...