I am populating a Rad Scheduler using a WCF services, some of the items cannot be deleted so I have set AllowDelete to be false this does not seem to work and when I hover over the appointment the delete image still appears.
I have also tried to set some other information based on whether the appointment is a parent or child and this does not seem to work either, see my code below. The subject of the appointment changes to be either "Parent: ...." or "Child: ...." so the IF statement is working correctly. But the other changes I am trying to make do not seem to work correctly.
Am I adding the appointments incorrectly/is there another way to do this that will work.
Public Overloads Overrides Function GetAppointments(ByVal Owner As RadScheduler) As IEnumerable(Of Appointment) Dim AppointmentsList As New List(Of Appointment) 'get a list of appointments to add and put them in the list above Do While Rs.ReadNext Dim AppointmentItem As New Appointment Slot.Fill(Rs.ReadRow) AppointmentItem.Start = Slot.Start_DT.Value AppointmentItem.End = Slot.End_DT.Value AppointmentItem.AllowEdit = False AppointmentItem.ID = Slot.GUI.Value If Slot.ParentGUI.IsNull Then AppointmentItem.Subject = "Parent: " & Slot.Name.Value AppointmentItem.AllowDelete = False AppointmentItem.ContextMenuID = "SchedulerAppointmentContextMenuDelete" Else AppointmentItem.Subject = "Child: " & Slot.Name.Value AppointmentItem.RecurrenceParentID = Slot.ParentGUI.Value AppointmentItem.AllowDelete = False AppointmentItem.BackColor = System.Drawing.Color.Black AppointmentItem.ForeColor = Drawing.Color.Pink AppointmentItem.ContextMenuID = "SchedulerAppointmentContextMenuNothing" ' have tried this too, AppointmentItem.ContextMenuID = Nothing End If AppointmentsList.Add(AppointmentItem) Loop Rs.Close() Return AppointmentsListEnd Function
Should showtext="false" work when I also have size="large"?
If "yes" then it's broken as I have...
<tools name="Proofing" tab="Home"> <tool name="AjaxSpellCheck" size="large" showtext="false"/> </tools>but see screenshot.
--
Stuart

Hello ,
We are facing a sporadic issue when using the RadUpload control in our website.
The application is hosted in a load balanced server and the session is stateless.
This is what is happening. If the user uploads 10 files (then it creates 10 temp files on the server in RadUploadTemp folder.)We have 2 app servers and when the user access the server, it might get connected to appserver1. But there is no guarentee that for all the 10times it tries to access the server, it will always go to appserver1 as they are loadbalanced. The moment it hits appserver2, we get file not found exception. If it always hits appserver1 then all the files will be uploaded successfully
We are get the error every now and then. Is there any configuration that can be set in the control that would make the control work without issues in case where the load balancing is set and the session is stateless?
Thank you
Regards
Pankaj