Re: Submit Form
2005/03/30 16:10
Viewed 14286 times
Replies: 0/0

Pass the "onUpdate" parameter to Calendar.setup, like this:

function submitForm() {
var form = document.getElementById("my-form");
// note, your form should have this ID
form.submit();
}

Calendar.setup({
...
onUpdate : submitForm,
...
});

Hope this helps.

Google