How would one set the value for a resource in the code behind (specifically for the Simple Form, not the Advanced Form)
I've tried the following with no luck . . . .
I've tried the following with no luck . . . .
public
void
RadScheduler1_AppointmentInsert(
object
sender, SchedulerCancelEventArgs e)
{
if
(e.Appointment.Attributes[
"Employee"
] ==
string
.Empty)
{
e.Appointment.Attributes[
"Employee"
] =
"555"
;
}
}