calendar

Fullcalendar in a new window and adding variables

First great calendar! It's going to save me a lot of time and headaches. I have a couple questions I am populating my calendar using AJAX- and it's working fine.. MySQL gets queried sends back nice JSON-- and et voila-- populates my calendar. The events on my calendar are events logged in by different users (all authentication and asso...

Using ACTION_EDIT Intent to add calendar item on SE Xperia mini

Hello, I am adding calendar items from my source with this code: Intent oIntent = new Intent (Intent.ACTION_EDIT); oIntent.setType ("vnd.android.cursor.item/event"); oIntent.putExtra ("title", "test"); oIntent.putExtra ("description", "test2"); oIntent.putExtra ("eventLocation", "somewhere"); oIntent.putExtra ("beginTime", Syste...

Android WebView will not scroll (Loading an embedded Google Calendar)

I am working on an app for my company. One of the buttons loads a webview of a google calendar. This works pretty well and all of my other webviews scroll appropriately. However when loading this calendar it resizes to the screen size and will not scroll. I tried setting the webview in a linear layout and making the height of the web...

Body of CalendarItem hidden in Outlook 2007?

I have created a calendar item using EWS, which contained a plain-text body. When I view this calendar item in Outlook 2007, nothing appears in the body, but when I view it using OWA (The web interface), I can see the body. Anyone have any idea why this is? ...

show default calendar in my app

Hi, is there an way to push the default calendar of the iPhone on one of my views (= can I call the default calendar to show up)? Than I could use the Event Kit Framework to add some events. Cheers ...

Java last day of month problem

Hello, I'm trying to create a date range to cover a full month, i.e. [startDate; endDate] As such, I have a reference date and try to create a new date from it. I'm having problem with the "endDate" because I want it to be near the end of the day (i.e. 23:59:59). The code I'm using is the following: public static Date previousMonth...

CalendarExtender ajax validation for past day

how can i restrict user so that user cannot select date 45 days older than current date ..........please help me out any one... ...

use calendar as date picker

I'd like to popup a calendar control (like the month view from the calendar provided by Apple), which can be used as date picker. I've already made some research, but I'm asking if I missed something out. There are several free available libraries: * Kal * GCCalendar * TapkuLibrary * iphonecal * iphone-gcal Also there is one comme...

Popup needs to refer back to textbox within a content control

I have a link that is located inside a content control. This link calls a javascript function that opens a popup window containing a calendar and passes it the transformed id from the server of a textbox control using clientid. I need to be able to click on a date and have the popup close and insert the date into the textbox of the id I ...

rails calendar select with time zone?

My client wants to have a calendar picker with support for time zones. Right now they are using the venerable calendar_date_select picker http://code.google.com/p/calendardateselect/ Which has no support for time zones. Surprisingly, I can't find any other plugins or other help in handling this. I would think this was a common probl...

UI design: display events in different timezones on same calendar

I'd like to show events on a calendar for my web service's customers. There are four scenarios possible in regards to timezones for these events: An event is local to the customer and is in the same timezone. For example, a meeting with a local business. An event is physically located in a different timezone than the customer, but it i...

UIDatePicker for a Non-Gregorian calendar

Hello, I am using UIDatePicker in my App, which works fine for a Gregorian calendar. But I want to use a Non-Gregorian calendar with the DatePicker, which I didn't succeed to do it! I need it to do some conversion from Non-Gregorian to Gregorian dates, so it must work the same whatever the iPhone 'Locales' are. Please can you answer th...

JSF 1.1 and tomahawk 1.1.1 inputCalendar, is myfaces-*.jar needed?

I should use JSF 1.1 Mojarra implemetnation in job project. But I need a popUp calendar widget. I've tried many different frameworks and stopped on tomahawk. I've setupped filter for tomahawk javasripts in web.xml but still have problems. Should I necessary replace jsf-impl.jar and jsf-api.jar with myfaces-impl.jar and myfaces-api.jar...

PHP script printing unnecessary new lines

Hi. I'm actually working on a booking system in PHP and I created a script that searches a MySql database checking if a X day is occupied (or not) storing un-occupied dates in an array. After that, I return the array to a function that prints all dates, passing those dates to a jQuery Datepicker array variable, so Datepicker knows which ...

Android Calendar View for Date Picker

Hi - I'm writing my first app, and I have a question about datepicker. My app requires the user to input a date. The most user-friendly way would be to popup a calendar-like widget that displays the current month like a calendar grid - something like this: http://i.imgur.com/9srDh.png I want to use that in place of the datepicker inte...

Help with Xin Calendar Javascript Package

I've been using Xin Calendar for a few years in my forms to allow users to click-enter dates. Site: http://www.yxscripts.com/xc2/index.html The issue I'm having is I want to have the user select the first date, then after it's selected, automatically set the end date 3 months in advance if the end date is null. I can figure out the JS...

All Day Event Sharepoint Calendar

Whenever "All Day Event" in share point calendar is not selected it shows blank value. Can we force it to show "No" instead of blank value. I appreciate your response. ...

Exchange Web Services Create Meeting Request Working Example

Is there a working example anywhere of how to create a meeting request using EWS for Exchange 2007 using C#? Which properties are required? I have added a web service reference and can connect to create and send various items but keep getting the error "Set action is invalid for property." on the response messages. It never says what p...

Overwrite drupal calendar theming

Hi everyone, I am trying to theme a calendar view, is there a way to override the theming path with a module instead of overwriting the template files? I want to create a module that overrides the theming functions so I can include the template files in my module instead of the calendar module. thx in advance ...

Database schema design for schedules

Hi! I have two tables: Companies and Employees. I also have a relation table Employs which contains the foreign keys company_id, employee_id as a composite primary key. Note: employees can work at multiple companies. I would like to have another table EmployeeSchedules which simply contains schedules (company_id:integer,employee_id:in...