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