Hi,
Been using Telerik UI for ASP.NET AJAX from 2012.
This year we decided to update to newer version.
When we started using the newer version we started having some layout related problems.
We have not made any changes to our code between updating the Telerik package.
When creating an appointment in scheduler we have added three custom attributes, BookedBy, Created and Temperatur.
The three attributes are shown but they show the property name instead of the custom label we have set for the control as shown in third picture.
First picture shows how the GUI have looked so far.
Second picture shows how the GUI looks after changing to the newer version.
Third and fourth pictures are screen dumps of the code.
Thanks in advance for any help you can give.
Edit
I realize my initial post wasn't very clear on my question.
My question is how to get the label of the custom attributes in
the appointment window, to be different from the names given in the telerik:Radscheduler tag.
In the older version of telerik package you could override the label shown in the appointment window.
In earlier version of telerik UI package this was done in the function you set in onformedcreated parameter of telerik:Radscheduler tag,
get the control linked to the custom attribute using following code:
RadTextBox CreatedByTextbox = (RadTextBox)e.Container.FindControl("AttrBookedBy");
and then change the label shown by changing the label of the control:
CreatedByTextbox.Label = "Skapad av:";
However in newer version of telerik UI package this doesn't seem to give the same behavior any more.
In my example I want the custom attribute BookedBy label in appointment window to be shown as "Skapad av:", how would I go about getting this behavior?