Hi,
I'm creating a RadCheckedListBox at run time and adding various items to it, some of which are checked and others which are not. Based on other data, I would like to override the default colour of the "tick" (currently green) to red, but not for all items only some of them. Is this possible ?
Regards
Toby
Hey guys, this is just a warning, u have set the font on RadDropDownListElement and RadCheckBoxElement so we can't change the font of RadDropDownList and RadCheckBox at design time, I had resolve it on my personalized theme removing the font applied repository item and I don't konw if u already fixed it, there maybe is another controls with the same problem, but I haven't noticied it.
Sorry for bad english
Hey,
I want to make available just the 1st and the 15th of a month.
How can I get this?
Regards

Hi,
I'm trying to being able to show or a hide an icon on a button when a PDF has been loaded. How do I show/hide an imported image resource for the project. Attached is a screenshot of the button when I set the image at design time but I need a way to show/hide this in code. Thanks!
J

Hi,
I have a uerControl, MyUserControl, that contains a RadRichTextEditor. The method that initializes MyUserControl instantiates a new RadDocument for the RadRichTextEditor. The new document is sometimes empty (no sections) and sometimes has one section that contains a paragrph!!! I have the following code to remove the initial paragraph (2 versions) and they both crash. What is the right way of doing it?
public void InitMyUserControl()
{
textEditor.RichTextBoxElement.BackColor = Color.White;
textEditor.Document = new RadDocument();
if ( textEditor.Document.Sections.Count != 0)
{
var block = textEditor.Document.Sections.First.Blocks.First;
textEditor.Document.Sections.First.Blocks.Remove(block);
}
OR
if ( textEditor.Document.Sections.Count != 0)
{
Section section = textEditor.Document.Sections.First;
textEditor.Document.Sections.Remove(section);
}
}
Thanks,
Shahrzade.

I export the radgridview to pdf with header and footer. How to have multiple lines of header with different font size?
Telerik.WinControls.Export.GridViewPdfExport exporter = new Telerik.WinControls.Export.GridViewPdfExport(this.radGridView1);
Thanks.

In grid view open property builder, I've added the header column field and I'm assigning data source in the code behind.
From the below link solution, For the gridlines alone we tried to set the style but it's not working.
link: https://www.telerik.com/support/kb/winforms/gridview/details/radgridview-merge-celss
How to set the for the grid rows without the header.
Attached image for your reference.

Hi
I have one more question... How can I disable the border around the child table? (see screenshot)
Thank You
