hey,I am trying to update, not really selecting resource in external window, how would I insert my UserID through C# code. this is from external edit example, I've already searched through this example. so hwo do you add a resource and update them through RadScheduler1.InsertAppointment(apt)? or insert the resource seperately. I just want my UserID to be inserted in there.
| else |
| { |
| // Insert |
| Appointment apt = new Appointment(); |
| apt.Start = aptStart; |
| apt.End = aptEnd; |
| apt.Subject = DescriptionText.Text; |
| if (Cache.Get("NewSchedule") != null) |
| { |
| //how do I update my Resource here? since its a string, and its keep asking me for a resource. |
| } |
| RadScheduler1.InsertAppointment(apt); |
| } |
| ScriptPlaceholder.Text = "GetRadWindow().Close();"; |