How can I change the text that shows on the appointments when in the week view? Right now it's just showing the week day and day of the month, as shown in the attached image. I need to be able to change that text to be the description field of the actual appointment, which is our work order number from the database.
Kind regards,
David

Using the following code: (Telerik UI for WinForms 2015.2.728)
tvElements.CheckBoxes = true;tvElements.TriStateMode = true;RadTreeNode root = tvElements.Nodes.Add("Classes");foreach (CNFClass cls in CNFConf.Classes) { RadTreeNode parent = root.Nodes.Add(cls.UID.ToString(), cls.Code, null); parent.ToolTipText = cls.Desc; parent.Enabled = cls.Enabled;}Checking the root node will check all Enabled and all Disabled children nodes.
Seems like this may be a bug, is there a workaround?


Hello,
I'm experiencing some problems with a gridview bound to a bindingsource (using entity framework 5).
The RowsChanging event does not fire on binding operations, neither on the initial binding nor on any subsequent reloading of data. The RowsChanged event does. To my understanding before every RowsChanged event, the RowsChanging event should fire at least once.
I tried using the gridview.Rows.CollectionChanging event, but it does not exist - though it should according to the documentation.
The event DOES fire if I modify the​ rows at runtime (like removing one row).
simplified version of the code (tried variations of binding to the MasterTemplate, with or without BeginEdit etc):
Kind regards,
Andreas
public RadForm1(){ InitializeComponent(); radGridView1.RowsChanging += RadGridView1OnRowsChanging; bs = new BindingSource {DataSource = context.Sonderthema_Art.ToList()}; radGridView1.DataSource = bs;}private void RadGridView1OnRowsChanging(object sender, GridViewCollectionChangingEventArgs gridViewCollectionChangingEventArgs){ throw new NotImplementedException();}

Hi.
If i want to loop appointments, i do this:
For Each a In uiRadSchedulerMain.Appointments
Dim test = a.Start
.....and so on.​
Next a
But what if i have 2, or more, resources to a appointment, how to loop these? I only get the first resourceId if eg. there are two or more resources to one appointment.​


