PropertyGridItem item = e.Item as PropertyGridItem;
if
(item.Label ==
"abc"
&& !item.Expanded)
{
item.Expand();
}
Is there a way to adjust the size of appointments in code, when in the month view?
Later
Art
Trying to Dim appointmentsTableAdapter As AppointmentsTableAdapter
Getting Type 'AppointmentsTableAdapter' is not defined
I have Imports Telerik.WinControls.UI in the form class
Do I need to import more?
Did a search on "AppointmentsTableAdapter", got nothing but writeups about it, but nothing about it's properties or parent class.
Great products ... horrible documentation!
Later
Art
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?