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...
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...
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...
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.
...
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!
...
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...
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...
Does anyone know how to implement a view similar to the iphone calendar day view?
...
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...
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...
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
...
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
...
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...
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.
...
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...
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.
...
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...
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...
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, ...
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 ...