I want to save the appointment Information to the client side .
Now I bind the webscheduleinfo to the database, but when I add the appointment to the webdayview, the appointment information will be add to the database.
But I don't want to access to the database every time . when I add the appointment.
Can I save the appointment Information to the client side temporarily, and when I click the " save button ", the added appointments' Information will be saved to the database.
You should be able to use the client event ActivityAdding, do what you want, then cancel the event.. I use this code to prevent certain users from opening the details dialog.
function GetSelectedActivity(scheduleInfo, evnt, dialog, activity) { if(activity != null) { // store activity details in a cookie, or wherever you want.. } // do not show the appointment details box evnt.cancel = true; return false; }