I am making a bookingsystem, and want to have one big calendar (table), with some information in a little box to the right.
In the box I want to textfields:
//first moment of the today
Calendar cal = new GregorianCalendar();
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
...
Hi,working further on my project lined out in a previous post - here's another pickle:I have two dates set, a beginning date and an end date for a period of time. That period can span several years.I now need to calculate the months in that period in accordance with the following reasoning:example: date1 = february 2, 2010 date2 = december 30, ...
[jQuery] Nutty dilemma with a time picker and calendar dates in Using jQuery 2 years ago Hi All,Ok, nutty dilemma with a time picker and calendar dates. First, someback story!I've got a week view of a calendar (Sun -Sat) showing events and timesthat opens into a lightbox-type window. This calendar is just a tablecreated by a ...