Friday, 20 March 2009

Appointment scheduling problems

Problem #1: When booking an appointment where start and end times are the same - I get:

[username] is being scheduled outside their work hours.

Solution: Default appointment end times to start time plus 1 hour.



Problem #2: When saving an appointment which conflicts with another appointment is users' calendar - I get:

[username] is unavailable at this time.

Solution: Default status reason (Show Time As) to Free.

if (crmForm.all.statuscode.DataValue == 5)
{
crmForm.all.statuscode.DataValue = 1;
}

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home